1
0
mirror of synced 2024-11-30 17:04:28 +01:00
GC-local-server-rewrite/SharedProject/models/SongPlayDetailData.cs
jiych1 4cd290aedc Add last play time support
Support setting avatar, navigator and titles on web interface (unoptimized)
2022-07-06 00:52:38 +08:00

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; }
}