2023-12-13 09:36:11 +10:00
|
|
|
|
namespace PARR.API.Contracts.V1.Responses.Statistics
|
|
|
|
|
|
{
|
|
|
|
|
|
public class StatRobotHistoryResponse
|
|
|
|
|
|
{
|
|
|
|
|
|
public RobotHistoryLevelResponse? Level { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int AllCount { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int DateCount { get; set; }
|
|
|
|
|
|
|
2026-03-05 10:19:54 +10:00
|
|
|
|
public DateOnly Date { get; set; }
|
2023-12-13 09:36:11 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|