1
0
mirror of synced 2024-11-27 23:50:49 +01:00
GC-local-server-rewrite/SharedProject/models/UserDetail.cs
2022-06-20 02:10:04 +08:00

34 lines
870 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 PlayedStageCount { 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; }
public List<SongPlayData>? SongPlayDataList { get; set; }
}