Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/CardIdentifier.cs
2026-05-23 15:47:23 -04:00

18 lines
394 B
C#

using MessagePack;
using System.Text.Json.Serialization;
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>
[JsonPropertyName("card_id")]
[Key("card_id")]
public long CardId { get; set; }
}