1
0
mirror of synced 2025-01-22 03:33:45 +01:00

9 lines
196 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace TaikoWebUI.Shared.Models;
public class MusicInfo
{
[JsonPropertyName("items")]
public List<MusicInfoEntry> Items { get; set; } = new();
}