Feat: Cambios Varios

This commit is contained in:
2025-12-23 15:12:57 -03:00
parent 32663e6324
commit 8bc1308bc5
58 changed files with 4080 additions and 663 deletions

View 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; }
}