Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/SleeveIdentifier.cs
2026-05-23 14:18:01 -04:00

16 lines
310 B
C#

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