1
0
mirror of synced 2024-11-13 18:10:52 +01:00
TaikoLocalServer/LocalSaveModScoreMigrator/PlayRecordJson.cs
2022-10-27 00:42:41 +08:00

21 lines
642 B
C#

using System.Text.Json.Serialization;
using SharedProject.Enums;
namespace LocalSaveModScoreMigrator;
public class PlayRecordJson
{
public string SongId { get; set; } = "tmap4";
public Difficulty Difficulty { get; set; }
[JsonPropertyName("dateTime")] public DateTime DateTime { get; set; }
public uint Score { set; get; }
public CrownType Crown { get; set; }
[JsonPropertyName("scorerank")] public ScoreRank Scorerank { get; set; }
public uint Good { get; set; }
public uint Ok { get; set; }
public uint Bad { get; set; }
public uint Combo { get; set; }
public uint Drumroll { get; set; }
}