1
0
mirror of synced 2024-12-19 09:55:55 +01:00
TaikoLocalServer/TaikoWebUI/Shared/Models/ShougouEntry.cs

9 lines
176 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace TaikoWebUI.Shared.Models;
public class ShougouEntry
{
[JsonPropertyName("uniqueId")]
public uint uniqueId { get; set; }
}