InitBasfTcc11
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据集合
|
||||
/// </summary>
|
||||
public class DataSourcePoint
|
||||
{
|
||||
private string pointText;
|
||||
/// <summary>
|
||||
/// 数据点x值
|
||||
/// </summary>
|
||||
public string PointText
|
||||
{
|
||||
get { return pointText; }
|
||||
set { pointText = value; }
|
||||
}
|
||||
|
||||
private string pointValue;
|
||||
/// <summary>
|
||||
/// 数据点y值
|
||||
/// </summary>
|
||||
public string PointValue
|
||||
{
|
||||
get { return pointValue; }
|
||||
set { pointValue = value; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user