1
0
mirror of synced 2025-01-28 02:45:54 +01:00

9 lines
176 B
C#

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