2023-09-09 14:58:20 +02:00
|
|
|
|
using SharedProject.Enums;
|
|
|
|
|
|
|
|
|
|
namespace GameDatabase.Entities;
|
|
|
|
|
|
|
|
|
|
public class AiSectionScoreDatum
|
|
|
|
|
{
|
2024-03-07 11:06:45 +01:00
|
|
|
|
public uint Baid { get; set; }
|
2023-09-09 14:58:20 +02:00
|
|
|
|
|
|
|
|
|
public uint SongId { get; set; }
|
|
|
|
|
|
|
|
|
|
public Difficulty Difficulty { get; set; }
|
|
|
|
|
|
|
|
|
|
public int SectionIndex { get; set; }
|
|
|
|
|
|
|
|
|
|
public CrownType Crown { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsWin { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint Score { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint GoodCount { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint OkCount { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint MissCount { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint DrumrollCount { get; set; }
|
|
|
|
|
|
|
|
|
|
public AiScoreDatum Parent { get; set; } = null!;
|
|
|
|
|
}
|