1
0
mirror of synced 2025-02-07 15:01:23 +01:00

16 lines
325 B
C#
Raw Normal View History

2022-04-25 02:07:11 +08: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; }
}