1
0
mirror of synced 2025-02-05 14:15:28 +01:00

16 lines
355 B
C#
Raw Normal View History

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