2022-09-12 17:29:29 +08:00
|
|
|
|
namespace TaikoWebUI.Shared.Models;
|
2022-09-10 23:45:18 +08:00
|
|
|
|
|
|
|
|
|
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; }
|
2022-09-12 22:17:15 +08:00
|
|
|
|
|
|
|
|
|
public int StarEasy { get; set; }
|
|
|
|
|
|
|
|
|
|
public int StarNormal { get; set; }
|
|
|
|
|
|
|
|
|
|
public int StarHard { get; set; }
|
|
|
|
|
|
|
|
|
|
public int StarOni { get; set; }
|
|
|
|
|
|
|
|
|
|
public int StarUra { get; set; }
|
2022-09-10 23:45:18 +08:00
|
|
|
|
}
|