13 lines
319 B
C#
13 lines
319 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Match;
|
|
|
|
public record MatchGroupStatusResponse
|
|
{
|
|
[JsonPropertyName("players")]
|
|
public List<GroupCharacter>? Players { get; set; }
|
|
|
|
[JsonPropertyName("maxPveCountExceeded")]
|
|
public bool? MaxPveCountExceeded { get; set; }
|
|
}
|