d14e7cc155
Co-authored-by: Alex <clodanSPT@hotmail.com> Co-authored-by: Chomp <27521899+chompDev@users.noreply.github.com>
12 lines
220 B
C#
12 lines
220 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; }
|
|
}
|