Files
SPT-Server-Build/Libraries/Core/Models/Eft/Match/ProfileStatusResponse.cs
T
2025-01-19 17:45:48 +00:00

13 lines
304 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Match;
public record ProfileStatusResponse
{
[JsonPropertyName("maxPveCountExceeded")]
public bool? MaxPveCountExceeded { get; set; }
[JsonPropertyName("profiles")]
public List<SessionStatus>? Profiles { get; set; }
}