1
0
mirror of synced 2025-01-09 20:01:36 +01:00

18 lines
380 B
C#
Raw Normal View History

2023-09-09 21:58:20 +09:00
using SharedProject.Enums;
namespace GameDatabase.Entities;
public class AiScoreDatum
{
2024-03-07 19:06:45 +09:00
public uint Baid { get; set; }
2023-09-09 21:58:20 +09:00
public uint SongId { get; set; }
public Difficulty Difficulty { get; set; }
public bool IsWin { get; set; }
public List<AiSectionScoreDatum> AiSectionScoreData { get; set; } = new();
public virtual UserDatum? Ba { get; set; }
2023-09-09 21:58:20 +09:00
}