using SharedProject.Enums; 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; } }