using System.Collections.Generic; namespace Model { public class SingleSerie { public string name { get; set; } public string type { get; set; } public List data { get; set; } public List dataString { get; set; } public decimal[] value { get; set; } public string url { get; set; } public string cityname { get; set; } } }