Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Models/Eft/Match/ProfileStatusResponse.cs
T
2025-06-04 14:49:37 +01:00

24 lines
456 B
C#

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