namespace HStation.Dto
{
///
///
///
public class Point2dDto
{
///
///
///
public Point2dDto() { }
///
///
///
public Point2dDto(double x, double y)
{
this.X = x;
this.Y = y;
}
///
///
///
public Point2dDto(Yw.Geometry.Point2d rhs)
{
this.X = rhs.X;
this.Y = rhs.Y;
}
///
///
///
public double X { get; set; }
///
///
///
public double Y { get; set; }
}
}