auto.bus_api/SharedModels/Responses/StatisticsResponse.cs
cuqmbr 8f104c786e feat: add statistics in json format
refactor: move methods to their proper classes
2023-05-10 23:16:53 +03:00

11 lines
343 B
C#

namespace SharedModels.Responses;
public class StatisticsResponse
{
public int EnrollmentsPlanned { get; set; }
public int EnrollmentsCanceled { get; set; }
public int TicketsSold { get; set; }
public int TicketsReturned { get; set; }
public double MoneyEarned { get; set; }
public double AverageRating { get; set; }
}