1
0
mirror of synced 2024-11-14 18:38:06 +01:00
TaikoLocalServer/SharedProject/Models/DanBestData.cs
2022-09-12 00:28:12 +08:00

16 lines
355 B
C#

using SharedProject.Enums;
namespace SharedProject.Models;
public class DanBestData
{
public uint DanId { get; set; }
public DanClearState ClearState { get; set; }
public uint SoulGaugeTotal { get; set; }
public uint ComboCountTotal { get; set; }
public List<DanBestStageData> DanBestStageDataList { get; set; } = new();
}