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