1
0
mirror of synced 2024-11-24 04:20:10 +01:00
TaikoSoundEditor/Data/MusicInfos.cs
NotImplementedLife 1ff7354141 first commit
2023-07-17 11:20:00 +03:00

11 lines
232 B
C#

using System.Text.Json.Serialization;
namespace TaikoSoundEditor.Data
{
internal class MusicInfos
{
[JsonPropertyName("items")]
public List<MusicInfo> Items { get; set; } = new List<MusicInfo>();
}
}