1
0
mirror of synced 2024-12-19 01:46:09 +01:00
TaikoLocalServer/TaikoWebUI/Shared/Models/MusicDetail.cs
shiibe 51730ce60f Make song titles and artists use the active language
* The song titles and artists for the High Score and Dani Dojo screens will show based on the current language selected in the Switcher
2024-03-08 15:11:54 -05:00

30 lines
888 B
C#

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 SongNameEN { get; set; } = string.Empty;
public string SongNameCN { get; set; } = string.Empty;
public string SongNameKO { get; set; } = string.Empty;
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;
public SongGenre Genre { get; set; }
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; }
}