1
0
mirror of synced 2025-01-09 11:51:36 +01:00
TaikoLocalServer/GameDatabase/Entities/ChallengeCompeteBestDatum.cs
2024-09-11 05:30:35 +08:00

25 lines
852 B
C#

using SharedProject.Enums;
namespace GameDatabase.Entities;
public partial class ChallengeCompeteBestDatum
{
public uint CompId { get; set; }
public uint Baid { get; set; }
public uint SongId { get; set; }
public Difficulty Difficulty { get; set; }
public CrownType Crown { get; set; }
public uint Score { get; set; }
public uint ScoreRate { get; set; }
public ScoreRank ScoreRank { get; set; }
public uint GoodCount { get; set; }
public uint OkCount { get; set; }
public uint MissCount { get; set; }
public uint ComboCount { get; set; }
public uint HitCount { get; set; }
public uint DrumrollCount { get; set; }
public bool Skipped { get; set; }
public virtual ChallengeCompeteSongDatum? ChallengeCompeteSongData { get; set; }
public virtual UserDatum? UserData { get; set; }
}