using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
///
/// 数据集合
///
public class DataSourcePoint
{
private string pointText;
///
/// 数据点x值
///
public string PointText
{
get { return pointText; }
set { pointText = value; }
}
private string pointValue;
///
/// 数据点y值
///
public string PointValue
{
get { return pointValue; }
set { pointValue = value; }
}
}
}