Files
SPT-Server-Build/Libraries/Core/Models/Eft/Match/MatchGroupStatusResponse.cs
T
2025-02-07 19:36:17 +00:00

21 lines
354 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Match;
public record MatchGroupStatusResponse
{
[JsonPropertyName("players")]
public List<GroupCharacter>? Players
{
get;
set;
}
[JsonPropertyName("maxPveCountExceeded")]
public bool? MaxPveCountExceeded
{
get;
set;
}
}