Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Match/MatchGroupCurrentResponse.cs
T
2025-08-21 09:46:00 +00:00

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; }
}