17 lines
412 B
C#
17 lines
412 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Model
|
|
{
|
|
public class SingleSerie
|
|
{
|
|
public string name { get; set; }
|
|
public string type { get; set; }
|
|
public List<double> data { get; set; }
|
|
public List<string> dataString { get; set; }
|
|
|
|
public decimal[] value { get; set; }
|
|
public string url { get; set; }
|
|
public string cityname { get; set; }
|
|
}
|
|
}
|