Files
SPT-Server-Build/Core/Models/Eft/Match/ProfileStatusResponse.cs
T
2025-01-08 13:41:25 +00:00

12 lines
302 B
C#

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