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