15 lines
308 B
C#
15 lines
308 B
C#
namespace WhiteLagoon.Web.ViewModels
|
|
{
|
|
public class LineChartDto
|
|
{
|
|
public List<ChartData> Series { get; set; }
|
|
public string[] Categories { get; set; }
|
|
}
|
|
|
|
public class ChartData
|
|
{
|
|
public string Name { get; set; }
|
|
public int[] Data { get; set; }
|
|
}
|
|
}
|