SGGL_SHJ/SGGL/Model/SingleSerie.cs

17 lines
412 B
C#
Raw Normal View History

2022-09-05 16:36:31 +08:00
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; }
}
}