1
0
mirror of synced 2024-12-18 17:35:55 +01:00
TaikoLocalServer/SharedProject/Models/SongBestData.cs

49 lines
1.2 KiB
C#
Raw Normal View History

using SharedProject.Enums;
namespace SharedProject.Models;
public class SongBestData
{
public uint SongId { get; set; }
public SongGenre Genre { get; set; }
public string MusicName { get; set; } = string.Empty;
public string MusicArtist { get; set; } = string.Empty;
public Difficulty Difficulty { get; set; }
2022-09-18 19:25:19 +02:00
public int PlayCount { get; set; }
2022-09-18 19:33:59 +02:00
public int ClearCount { get; set; }
public int FullComboCount { get; set; }
public int PerfectCount { get; set; }
2022-09-18 19:25:19 +02:00
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; }
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-21 16:30:09 +02:00
public List<AiSectionBestData> AiSectionBestData { get; set; }
2022-09-23 04:53:35 +02:00
public bool ShowAiData { get; set; } = false;
}