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

10 lines
183 B
C#

using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class CardSetIdentifier
{
[Key("card_set_id")]
public int SetId { get; set; }
}