2022-04-24 20:07:11 +02:00
|
|
|
|
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; }
|
2022-07-05 18:52:38 +02:00
|
|
|
|
|
|
|
|
|
public DateTime LastPlayTime { get; set; }
|
2022-04-24 20:07:11 +02:00
|
|
|
|
}
|