Files
2025-05-20 11:46:50 -04:00

11 lines
290 B
C#

namespace WhiteLagoon.Web.ViewModels
{
public class RadialBarChartDto
{
public decimal TotalCount { get; set; }
public decimal CountInCurrentMonth { get; set; }
public bool HasRatioIncreased { get; set; }
public int[] Series { get; set; }
}
}