feat(api): StatOrderController

This commit is contained in:
Mikhail Trubnikov
2023-12-21 16:00:08 +10:00
parent 9e55dfa9b5
commit 0299c2ec72
5 changed files with 160 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
namespace PARR.API.Contracts.V1.Responses.Statistics
{
public class StatOrderResponse
{
public int AllCount { get; set; }
public int DownloadedLastDayCount { get; set; }
}
public class StatOrderStatusesResponse
{
public int Count { get; set; }
public OrderStatusResponse? Status { get; set; }
}
public class GetStatusesLastDayResponse
{
public int Count { get; set; }
public OrderStatusResponse? Status { get; set; }
}
}