35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Model
|
|||
|
{
|
|||
|
public class SingleSerie
|
|||
|
{
|
|||
|
public string name { get; set; }
|
|||
|
public string type { get; set; }
|
|||
|
public decimal[] value { get; set; }
|
|||
|
public string url { get; set; }
|
|||
|
public string cityname { get; set; }
|
|||
|
public string barWidth { get; set; }
|
|||
|
public string stack { get; set; }
|
|||
|
|
|||
|
public List<double> data { get; set; }
|
|||
|
public List<double> data2 { get; set; }
|
|||
|
public List<double> data3 { get; set; }
|
|||
|
public List<decimal> data4 { get; set; }
|
|||
|
|
|||
|
public List<string> dataString { get; set; }
|
|||
|
public List<object> dataObject { get; set; }
|
|||
|
public List<string> jd { get; set; }
|
|||
|
public List<string> sg { get; set; }
|
|||
|
public List<string> time { get; set; }
|
|||
|
public List<string> ht { get; set; }
|
|||
|
public List<string> convert { get; set; }
|
|||
|
public List<PieData> pieData { get; set; }
|
|||
|
public List<string> loc { get; set; }
|
|||
|
}
|
|||
|
}
|