1
0
mirror of synced 2024-11-27 21:10:48 +01:00
TaikoSoundEditor/Data/MusicInfos.cs

11 lines
232 B
C#
Raw Normal View History

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