15 lines
335 B
C#
15 lines
335 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 uint Genre { get; set; }
|
||
|
}
|