Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Match/ProfileStatusResponse.cs
T
2025-03-07 13:16:43 +00:00

21 lines
368 B
C#

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