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

10 lines
183 B
C#

using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class EmblemIdentifier
{
[Key("emblem_id")]
public int EmblemId { get; set; }
}