1
0
mirror of synced 2025-02-20 20:41:16 +01:00

30 lines
752 B
C#
Raw Normal View History

namespace SharedProject.models;
2022-04-25 02:07:11 +08:00
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; }
}