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

18 lines
384 B
C#

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