1
0
mirror of synced 2025-02-12 00:53:02 +01:00
TaikoSoundEditor/Data/MusicInfos.cs

11 lines
232 B
C#
Raw Normal View History

2023-07-17 11:20:00 +03:00
using System.Text.Json.Serialization;
namespace TaikoSoundEditor.Data
{
internal class MusicInfos
{
[JsonPropertyName("items")]
public List<MusicInfo> Items { get; set; } = new List<MusicInfo>();
}
}