16 lines
398 B
C#
16 lines
398 B
C#
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; }
|
|
}
|
|
}
|