14 lines
229 B
C#
14 lines
229 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Match;
|
|
|
|
public record MatchGroupCurrentResponse
|
|
{
|
|
[JsonPropertyName("squad")]
|
|
public List<GroupCharacter>? Squad
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|