1
0
mirror of synced 2025-02-17 11:18:32 +01:00

10 lines
253 B
C#
Raw Normal View History

2023-09-09 21:58:20 +09:00
using System.Text.Json.Serialization;
namespace LocalSaveModScoreMigrator;
public class MusicInfoEntry
{
[JsonPropertyName("id")] public string Id { get; set; } = string.Empty;
[JsonPropertyName("uniqueId")] public uint SongId { get; set; }
}