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

21 lines
352 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;
}
}