1
0
mirror of synced 2025-01-19 00:04:05 +01:00
asesidaa 7e43b44e24 Cache more on song data
Remove unnecessary using
2022-09-12 17:29:29 +08:00

15 lines
340 B
C#

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; }
[JsonPropertyName("genreNo")]
public SongGenre Genre { get; set; }
}