1
0
mirror of synced 2025-02-05 06:05:38 +01:00

30 lines
708 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace TaikoWebUI.Shared.Models;
public class MusicInfoEntry
{
[JsonPropertyName("id")]
public string Id { get; set; } = string.Empty;
[JsonPropertyName("uniqueId")]
public uint SongId { get; set; }
2024-03-08 18:42:56 -05:00
[JsonPropertyName("genreNo")]
public SongGenre Genre { get; set; }
2022-09-12 22:17:15 +08:00
[JsonPropertyName("starEasy")]
public int StarEasy { get; set; }
2024-03-08 18:42:56 -05:00
2022-09-12 22:17:15 +08:00
[JsonPropertyName("starNormal")]
public int StarNormal { get; set; }
2024-03-08 18:42:56 -05:00
2022-09-12 22:17:15 +08:00
[JsonPropertyName("starHard")]
public int StarHard { get; set; }
2024-03-08 18:42:56 -05:00
2022-09-12 22:17:15 +08:00
[JsonPropertyName("starMania")]
public int StarOni { get; set; }
2024-03-08 18:42:56 -05:00
2022-09-12 22:17:15 +08:00
[JsonPropertyName("starUra")]
public int StarUra { get; set; }
}