CNCEC_SUBQHSE_WUHUAN/SGGL/Model/SingleSerie2.cs

16 lines
312 B
C#
Raw Normal View History

2021-11-18 10:34:25 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class SingleSerie2
{
public string name { get; set; }
public string type { get; set; }
public List<double?> data { get; set; }
}
}