using System.Text.Json.Serialization; using Core.Models.Eft.Inventory; namespace Core.Models.Eft.Quests; public record AcceptQuestRequestData : InventoryBaseActionRequestData { [JsonPropertyName("qid")] public string? QuestId { get; set; } [JsonPropertyName("type")] public string? Type { get; set; } }