1
0
mirror of synced 2024-11-24 06:50:15 +01:00
TaikoLocalServer/LocalSaveModScoreMigrator/MusicInfoEntry.cs

10 lines
253 B
C#
Raw Normal View History

2023-09-09 14:58:20 +02: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; }
}