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