9 lines
183 B
C#
9 lines
183 B
C#
|
using System.Text.Json.Serialization;
|
|||
|
|
|||
|
namespace TaikoWebUI.Shared.Models;
|
|||
|
|
|||
|
public class MusicOrderEntry
|
|||
|
{
|
|||
|
[JsonPropertyName("uniqueId")]
|
|||
|
public uint SongId { get; set; }
|
|||
|
}
|