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