1
0
mirror of synced 2025-02-10 08:08:26 +01:00

30 lines
856 B
C#
Raw Normal View History

namespace TaikoWebUI.Shared.Models;
public class MusicDetail
{
public uint SongId { get; set; }
2024-03-08 18:42:56 -05:00
public int Index { get; set; }
public string SongName { get; set; } = string.Empty;
public string SongNameEN { get; set; } = string.Empty;
public string SongNameCN { get; set; } = string.Empty;
public string SongNameKO { get; set; } = string.Empty;
2024-03-08 18:42:56 -05:00
public string ArtistName { get; set; } = string.Empty;
public string ArtistNameEN { get; set; } = string.Empty;
public string ArtistNameCN { get; set; } = string.Empty;
public string ArtistNameKO { get; set; } = string.Empty;
2024-03-08 18:42:56 -05:00
public SongGenre Genre { get; set; }
2024-03-08 18:42:56 -05:00
2022-09-12 22:17:15 +08:00
public int StarEasy { get; set; }
2024-03-08 18:42:56 -05:00
2022-09-12 22:17:15 +08:00
public int StarNormal { get; set; }
2024-03-08 18:42:56 -05:00
2022-09-12 22:17:15 +08:00
public int StarHard { get; set; }
2024-03-08 18:42:56 -05:00
2022-09-12 22:17:15 +08:00
public int StarOni { get; set; }
2024-03-08 18:42:56 -05:00
2022-09-12 22:17:15 +08:00
public int StarUra { get; set; }
}