using System.Text.Json.Serialization; using Core.Models.Eft.Inventory; namespace Core.Models.Eft.Repair; public record RepairActionDataRequest : InventoryBaseActionRequestData { [JsonPropertyName("repairKitsInfo")] public List? RepairKitsInfo { get; set; } /// /// item to repair /// [JsonPropertyName("target")] public string? Target { get; set; } } public record RepairKitsInfo { /// /// id of repair kit to use /// [JsonPropertyName("_id")] public string? Id { get; set; } /// /// amount of units to reduce kit by /// [JsonPropertyName("count")] public int? Count { get; set; } }