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

12 lines
258 B
C#

using MessagePack;
using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class EmblemIdentifier
{
[JsonPropertyName("emblem_id")]
[Key("emblem_id")]
public long EmblemId { get; set; }
}