8 lines
192 B
C#
8 lines
192 B
C#
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace LocalSaveModScoreMigrator;
|
||
|
|
||
|
public class MusicInfo
|
||
|
{
|
||
|
[JsonPropertyName("items")] public List<MusicInfoEntry> Items { get; set; } = new();
|
||
|
}
|