21 lines
368 B
C#
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;
|
|
}
|
|
}
|