using System.Text.Json.Serialization; using SPTarkov.Server.Core.Models.Common; using SPTarkov.Server.Core.Models.Eft.Inventory; namespace SPTarkov.Server.Core.Models.Eft.Customization; public record BuyClothingRequestData : InventoryBaseActionRequestData { [JsonExtensionData] public Dictionary? ExtensionData { get; set; } [JsonPropertyName("offer")] public MongoId Offer { get; set; } [JsonPropertyName("items")] public List? Items { get; set; } } public record PaymentItemForClothing { [JsonExtensionData] public Dictionary? ExtensionData { get; set; } [JsonPropertyName("del")] public bool? Del { get; set; } [JsonPropertyName("id")] public MongoId Id { get; set; } [JsonPropertyName("count")] public int? Count { get; set; } }