using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
///
/// Identifies a card in the game system.
///
[MessagePackObject]
public class CardIdentifier
{
///
/// The identifier of the card.
///
[Key("card_id")]
public long CardId { get; set; }
}