using System.Collections.Generic; namespace WeApp.BaseSystem.Query.Dto { public class ChartLogDto { public string GroupNo { get; set; } public string GroupName { get; set; } public decimal Matched { get; set; } public decimal NotMatched { get; set; } } public class ChartSeriesDto { public ChartSeriesDto() { } public ChartSeriesDto(string name) { Name = name; Data = new List(); } public string Name { get; set; } public List Data { get; set; } } }