16 lines
322 B
C#
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; }
|
|
} |