23 lines
571 B
C#
23 lines
571 B
C#
|
|
namespace SIGCM.Domain.Models;
|
||
|
|
|
||
|
|
public class DashboardStats
|
||
|
|
{
|
||
|
|
public decimal RevenueToday { get; set; }
|
||
|
|
public int AdsToday { get; set; }
|
||
|
|
public decimal TicketAverage { get; set; }
|
||
|
|
public double PaperOccupation { get; set; }
|
||
|
|
public List<DailyRevenue> WeeklyTrend { get; set; } = new();
|
||
|
|
public List<ChannelStat> ChannelMix { get; set; } = new();
|
||
|
|
}
|
||
|
|
|
||
|
|
public class DailyRevenue
|
||
|
|
{
|
||
|
|
public string Day { get; set; } = "";
|
||
|
|
public decimal Amount { get; set; }
|
||
|
|
}
|
||
|
|
|
||
|
|
public class ChannelStat
|
||
|
|
{
|
||
|
|
public string Name { get; set; } = "";
|
||
|
|
public int Value { get; set; }
|
||
|
|
}
|