2022-09-08 19:22:01 +02:00
|
|
|
|
using SharedProject.Enums;
|
|
|
|
|
|
|
|
|
|
namespace SharedProject.Models;
|
|
|
|
|
|
|
|
|
|
public class SongBestData
|
|
|
|
|
{
|
|
|
|
|
public uint SongId { get; set; }
|
|
|
|
|
|
|
|
|
|
public Difficulty Difficulty { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint BestScore { get; set; }
|
|
|
|
|
|
|
|
|
|
public uint BestRate { get; set; }
|
|
|
|
|
|
|
|
|
|
public CrownType BestCrown { get; set; }
|
|
|
|
|
|
|
|
|
|
public ScoreRank BestScoreRank { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime LastPlayTime { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsFavorite { get; set; }
|
2022-09-10 08:35:17 +02:00
|
|
|
|
|
|
|
|
|
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; }
|
2022-09-08 19:22:01 +02:00
|
|
|
|
}
|