using MessagePack; using System.Text.Json.Serialization; namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests.DeckBuilder; /// /// Portal resolve-by-code request. Anonymous on the wire — does not extend /// ; see for the rationale. /// [MessagePackObject] public class GetDeckFromCodeRequest { [JsonPropertyName("deck_code")] [Key("deck_code")] public string DeckCode { get; set; } = ""; }