Feat: Cambios Varios
This commit is contained in:
23
src/SIGCM.Domain/Models/DashboardStats.cs
Normal file
23
src/SIGCM.Domain/Models/DashboardStats.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user