using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TeamAAS_VP.Enums;
namespace TeamAAS_VP.Models.Robot
{
///
/// 托盘扩展
///
public class PalletExtend: BindableBase
{
private CoordinateModel _CoordinateModel;
///
/// 坐标模式
///
public CoordinateModel CoordinateModel
{
get { return _CoordinateModel; }
set { SetProperty(ref _CoordinateModel, value); }
}
private double _Pallet_X_Interval;
///
/// 子托盘之间X方向间隔距离
///
public double Pallet_X_Interval
{
get { return _Pallet_X_Interval; }
set { SetProperty(ref _Pallet_X_Interval, value); }
}
private double _Pallet_Y_Interval;
///
/// 子托盘之间Y方向间隔距离
///
public double Pallet_Y_Interval
{
get { return _Pallet_Y_Interval; }
set { SetProperty(ref _Pallet_Y_Interval, value); }
}
private int _Pallet_Row;
///
/// 子托盘X方向排列的个数
///
public int Pallet_Row
{
get { return _Pallet_Row; }
set { SetProperty(ref _Pallet_Row, value); }
}
private int _Pallet_Column;
///
/// 子托盘Y方向排列的个数
///
public int Pallet_Column
{
get { return _Pallet_Column; }
set { SetProperty(ref _Pallet_Column, value); }
}
}
}