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