62d0e6b4d7
Add tabs for play result Reformat game data manager
16 lines
367 B
C#
16 lines
367 B
C#
using System.Text.Json.Serialization;
|
|
using SharedProject.Enums;
|
|
|
|
namespace TaikoWebUI.Shared.Models;
|
|
|
|
public class MusicInfoEntry
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public string Id { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("uniqueId")]
|
|
public uint SongId { get; set; }
|
|
|
|
[JsonPropertyName("genreNo")]
|
|
public SongGenre Genre { get; set; }
|
|
} |