SGGL_SHJ/SGGL/Model/BusinessColumn.cs

16 lines
398 B
C#
Raw Normal View History

2022-09-05 16:36:31 +08:00
using System.Collections.Generic;
namespace Model
{
public class BusinessColumn
{
public string title { get; set; }
public int xFontNum { get; set; }
public List<string> legend { get; set; }
public List<string> categories { get; set; }
public List<SingleSerie> series { get; set; }
public List<SingleSerie> series2 { get; set; }
}
}