11 lines
290 B
C#
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; }
|
|
}
|
|
}
|