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