initProject

This commit is contained in:
2024-05-08 11:01:54 +08:00
commit e7cea71567
4078 changed files with 579425 additions and 0 deletions
+33
View File
@@ -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; }
}
}
}