2022-09-12 11:29:29 +02:00
|
|
|
|
namespace TaikoWebUI.Shared.Models;
|
2022-09-10 17:45:18 +02:00
|
|
|
|
|
|
|
|
|
public class MusicDetail
|
|
|
|
|
{
|
|
|
|
|
public uint SongId { get; set; }
|
|
|
|
|
public int Index { get; set; }
|
|
|
|
|
|
|
|
|
|
public string SongName { get; set; } = string.Empty;
|
2024-03-08 21:11:54 +01:00
|
|
|
|
public string SongNameEN { get; set; } = string.Empty;
|
|
|
|
|
public string SongNameCN { get; set; } = string.Empty;
|
|
|
|
|
public string SongNameKO { get; set; } = string.Empty;
|
2024-03-09 00:42:56 +01:00
|
|
|
|
|
2022-09-10 17:45:18 +02:00
|
|
|
|
public string ArtistName { get; set; } = string.Empty;
|
2024-03-08 21:11:54 +01:00
|
|
|
|
public string ArtistNameEN { get; set; } = string.Empty;
|
|
|
|
|
public string ArtistNameCN { get; set; } = string.Empty;
|
|
|
|
|
public string ArtistNameKO { get; set; } = string.Empty;
|
2024-03-09 00:42:56 +01:00
|
|
|
|
|
2022-09-10 17:45:18 +02:00
|
|
|
|
public SongGenre Genre { get; set; }
|
2022-09-12 16:17:15 +02: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; }
|
2024-03-17 20:46:47 +01:00
|
|
|
|
|
|
|
|
|
public bool IsFavorite { get; set; } = false;
|
2022-09-10 17:45:18 +02:00
|
|
|
|
}
|