1
0
mirror of synced 2024-12-12 14:51:08 +01:00
TaikoLocalServer/TaikoWebUI/Shared/Models/MusicInfo.cs

9 lines
195 B
C#
Raw Normal View History

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