1
0
mirror of synced 2025-02-19 03:54:13 +01:00

34 lines
870 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 PlayedStageCount { get; set; }
2022-04-25 02:07:11 +08:00
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; }
public List<SongPlayData>? SongPlayDataList { get; set; }
2022-04-25 02:07:11 +08:00
}