Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/SleeveIdentifier.cs
2024-09-12 00:35:31 -04:00

16 lines
309 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 int SleeveId { get; set; }
}