1
0
mirror of synced 2025-01-23 06:47:10 +01:00

10 lines
210 B
C#
Raw Normal View History

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