2022-10-26 18:42:11 +02:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
namespace LocalSaveModScoreMigrator;
|
|
|
|
|
|
|
|
public class MusicInfo
|
|
|
|
{
|
2022-10-26 18:42:41 +02:00
|
|
|
[JsonPropertyName("items")] public List<MusicInfoEntry> Items { get; set; } = new();
|
2022-10-26 18:42:11 +02:00
|
|
|
}
|