using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PaintDotNet.DedicatedAnalysis.NonferrousMetals.YYT098814_2016
{
public class Line
{
///
/// 直线的起点
///
public System.Drawing.Point startPoint;
///
/// 直线的终点
///
public System.Drawing.Point endPoint;
///
/// 构造方法
///
///
///
public Line(System.Drawing.Point s, System.Drawing.Point e)
{
this.startPoint = s;
this.endPoint = e;
}
}
}