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