32 lines
576 B
C#
32 lines
576 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Utils;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.InRaid;
|
|
|
|
public record RegisterPlayerRequestData : IRequestData
|
|
{
|
|
[JsonExtensionData]
|
|
public Dictionary<string, object> ExtensionData { get; set; }
|
|
|
|
[JsonPropertyName("crc")]
|
|
public int? Crc
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("locationId")]
|
|
public string? LocationId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("variantId")]
|
|
public int? VariantId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|