| 12345678910111213141516171819202122232425262728 |
- 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<decimal>();
- }
- public string Name { get; set; }
- public List<decimal> Data { get; set; }
- }
- }
|