Files
SPT-Server-Build/Core/Models/Eft/InRaid/RegisterPlayerRequestData.cs
T
2025-01-07 10:42:52 +00:00

15 lines
347 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.InRaid;
public class RegisterPlayerRequestData
{
[JsonPropertyName("crc")]
public int Crc { get; set; }
[JsonPropertyName("locationId")]
public string LocationId { get; set; }
[JsonPropertyName("variantId")]
public int VariantId { get; set; }
}