2022-09-09 20:31:45 +08:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
namespace TaikoWebUI.Shared.Models;
|
|
|
|
|
|
|
|
public class MusicInfo
|
|
|
|
{
|
2024-03-08 18:42:56 -05:00
|
|
|
[JsonPropertyName("items")]
|
2022-09-09 20:31:45 +08:00
|
|
|
public List<MusicInfoEntry> Items { get; set; } = new();
|
|
|
|
}
|