1
0
mirror of synced 2025-01-24 23:13:45 +01:00

10 lines
253 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
namespace LocalSaveModScoreMigrator;
public class MusicInfoEntry
{
2022-10-27 00:42:41 +08:00
[JsonPropertyName("id")] public string Id { get; set; } = string.Empty;
2022-10-27 00:42:41 +08:00
[JsonPropertyName("uniqueId")] public uint SongId { get; set; }
}