using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Bimface
{
///
/// 二维Int坐标
///
public class CoordinateInt2d
{
///
/// x
///
public int x { get; set; }
///
/// y
///
public int y { get; set; }
}
}