4cd290aedc
Support setting avatar, navigator and titles on web interface (unoptimized)
18 lines
377 B
C#
18 lines
377 B
C#
using SharedProject.enums;
|
|
|
|
namespace SharedProject.models;
|
|
|
|
public class SongPlayDetailData
|
|
{
|
|
public int Score { get; set; }
|
|
|
|
public int PlayCount { get; set; }
|
|
|
|
public int MaxChain { get; set; }
|
|
|
|
public Difficulty Difficulty { get; set; }
|
|
|
|
public ClearState ClearState { get; set; }
|
|
|
|
public DateTime LastPlayTime { get; set; }
|
|
} |