Files
SPT-Server-Build/Core/Models/Eft/Match/MatchGroupStatusResponse.cs
T

12 lines
308 B
C#

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