13 lines
304 B
C#
13 lines
304 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; }
|
|
}
|