You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
665 B
C#

1 month ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
#region 文件说明
/*-----------------------------------------------------
* c 2024 jdfcd
* CLR 4.0.30319.42000
* DQ.Construction.NewLook.Utility
*
* pnpe
* pnpe@qq.com
* 2024/7/6 17:39:57
*/
#endregion 文件说明
namespace WellWorkDataUI
{
/// <summary>
/// The simple well.
/// </summary>
public class SimpleWell
{
public double X { get; set; }
public double Y { get; set; }
public string JH { get; set; }
}
}