11 lines
227 B
C#
11 lines
227 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MP.Data.DTO
|
|
{
|
|
public class ChartSeriesDto
|
|
{
|
|
public string SeriesName { get; set; }
|
|
public List<chartJsData.chartJsTSerie> DataPoints { get; set; }
|
|
}
|
|
}
|