1
0
mirror of synced 2024-12-02 18:17:20 +01:00
TaikoLocalServer/TaikoWebUI/Shared/Models/MusicOrderEntry.cs
2023-09-09 21:58:20 +09:00

9 lines
183 B
C#

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