1
0
mirror of synced 2025-01-30 11:57:23 +01:00

18 lines
550 B
C#
Raw Normal View History

2023-09-09 21:58:20 +09:00
using SharedProject.Enums;
2024-03-09 23:49:47 -05:00
using SharedProject.Entities;
2023-09-09 21:58:20 +09:00
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
}