namespace IStation.Model
{
///
/// 自定义点信息
///
public class PointC : JsonList
{
///
///
///
public PointC() { }
///
///
///
public PointC(double x, double y)
{
this.X = x;
this.Y = y;
}
///
///
///
public PointC(PointC rhs)
{
this.X = rhs.X;
this.Y = rhs.Y;
}
///
/// X
///
public double X { get; set; }
///
/// Y
///
public double Y { get; set; }
///
///
///
public override string ToString()
{
return $"{X},{Y}";
}
}
}