Files
2024-09-12 00:35:31 -04:00

16 lines
322 B
C#

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