Files
SPT-Server-Build/Libraries/Core/Models/Eft/Customization/BuyClothingRequestData.cs
T
2025-01-19 17:45:48 +00:00

28 lines
628 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Customization;
public record BuyClothingRequestData
{
[JsonPropertyName("Action")]
public string? Action { get; set; } = "CustomizationBuy";
[JsonPropertyName("offer")]
public string? Offer { get; set; }
[JsonPropertyName("items")]
public List<PaymentItemForClothing>? Items { get; set; }
}
public record PaymentItemForClothing
{
[JsonPropertyName("del")]
public bool? Del { get; set; }
[JsonPropertyName("id")]
public string? Id { get; set; }
[JsonPropertyName("count")]
public int? Count { get; set; }
}