1
0
mirror of synced 2025-01-05 18:04:26 +01:00
TaikoLocalServer/SharedProject/Models/DanBestData.cs

16 lines
355 B
C#
Raw Normal View History

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