using MessagePack; namespace SVSim.EmulatedEntrypoint.Models.Dtos; /// /// Identifies a card sleeve. /// [MessagePackObject] public class SleeveIdentifier { /// /// The id of the sleeve. /// [Key("sleeve_id")] public int SleeveId { get; set; } }