Files
SPT-Server-Build/Core/Models/Eft/InRaid/RegisterPlayerRequestData.cs
T
2025-01-12 15:32:12 +00:00

17 lines
383 B
C#

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