1
0
mirror of synced 2024-11-12 01:20:51 +01:00
TaikoLocalServer/LocalSaveModScoreMigrator/MusicInfoEntry.cs
2022-10-27 00:42:41 +08:00

10 lines
253 B
C#

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; }
}