1
0
mirror of synced 2025-01-24 23:13:45 +01:00

17 lines
520 B
C#
Raw Normal View History

2023-09-09 21:58:20 +09:00
using SharedProject.Enums;
namespace GameDatabase.Entities;
public class DanScoreDatum
{
2024-03-07 19:06:45 +09:00
public uint Baid { get; set; }
2023-09-09 21:58:20 +09:00
public uint DanId { get; set; }
2023-10-17 18:57:56 +08:00
public DanType DanType { get; set; }
2023-09-09 21:58:20 +09: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 UserDatum? Ba { get; set; }
2023-09-09 21:58:20 +09:00
}