1
0
mirror of synced 2024-12-01 09:37:21 +01:00
TaikoLocalServer/TaikoWebUI/Shared/Models/MusicDetail.cs

24 lines
528 B
C#
Raw Normal View History

2023-09-09 14:58:20 +02:00
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; }
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; }
}