1
0
mirror of synced 2025-02-15 18:22:37 +01:00
2022-04-25 02:07:11 +08:00

30 lines
752 B
C#

namespace SharedProject.models;
public class UserDetail: User
{
public PlayOption PlayOption { get; set; } = new PlayOption();
public long TotalScore { get; set; }
public int AverageScore { get; set; }
public int TotalSongCount { get; set; }
public int PlayedSongCount { get; set; }
public int TotalStageCount { get; set; }
public int ClearedStageCount { get; set; }
public int NoMissStageCount { get; set; }
public int FullChainStageCount { get; set; }
public int PerfectStageCount { get; set; }
public int SAboveStageCount { get; set; }
public int SPlusAboveStageCount { get; set; }
public int SPlusPlusAboveStageCount { get; set; }
}