1
0
mirror of synced 2024-12-03 18:47:21 +01:00
TaikoLocalServer/GameDatabase/Entities/DanScoreDatum.cs

17 lines
516 B
C#
Raw Normal View History

2023-09-09 14:58:20 +02:00
using SharedProject.Enums;
namespace GameDatabase.Entities;
public class DanScoreDatum
{
public ulong Baid { get; set; }
public uint DanId { get; set; }
2023-10-17 12:57:56 +02:00
public DanType DanType { get; set; }
2023-09-09 14:58:20 +02:00
public uint ArrivalSongCount { get; set; }
public uint SoulGaugeTotal { get; set; }
public uint ComboCountTotal { get; set; }
public DanClearState ClearState { get; set; }
public List<DanStageScoreDatum> DanStageScoreData { get; set; } = new();
public virtual Card? Ba { get; set; }
}