62d0e6b4d7
Add tabs for play result Reformat game data manager
10 lines
210 B
C#
10 lines
210 B
C#
using System.Text.Json.Serialization;
|
|
using SharedProject.Enums;
|
|
|
|
namespace TaikoWebUI.Shared.Models;
|
|
|
|
public class MusicOrderEntry
|
|
{
|
|
[JsonPropertyName("uniqueId")]
|
|
public uint SongId { get; set; }
|
|
} |