SGGL_SHJ/SGGL/Model/Chart/DataSourceTeam.cs

31 lines
735 B
C#
Raw Normal View History

2022-09-05 16:36:31 +08:00
using System.Collections.Generic;
namespace Model
{
/// <summary>
/// 数据点类
/// </summary>
public class DataSourceTeam
{
private string dataPointName;
/// <summary>
/// 数据点名称
/// </summary>
public string DataPointName
{
get { return dataPointName; }
set { dataPointName = value; }
}
private List<DataSourcePoint> dataSourcePoints;
/// <summary>
/// 数据集合
/// </summary>
public List<DataSourcePoint> DataSourcePoints
{
get { return dataSourcePoints; }
set { dataSourcePoints = value; }
}
}
}