1
0
mirror of synced 2025-01-22 11:53:40 +01:00
asesidaa 62d0e6b4d7 Add song genre
Add tabs for play result
Reformat game data manager
2022-09-10 23:45:18 +08:00

16 lines
341 B
C#

using SharedProject.Enums;
namespace TaikoWebUI.Shared.Models;
public class MusicDetail
{
public uint SongId { get; set; }
public int Index { get; set; }
public string SongName { get; set; } = string.Empty;
public string ArtistName { get; set; } = string.Empty;
public SongGenre Genre { get; set; }
}