14 lines
307 B
C#
14 lines
307 B
C#
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; }
|
|
|
|
public DateOnly Date { get; set; }
|
|
}
|
|
}
|