using SKMC.Api.Device.Config;
namespace SKMC.Api.Machine.Config
{
///
/// 机台目录配置
///
public class MachineCatalogConfig : ConfigBase
{
public bool IsChecked { get; set; }
}
///
/// 机台参数配置
///
public class MachineParamConfig : ConfigBase
{
private string _group;
public string Group
{
get { return _group; }
set { _group = value; RaisePropertyChanged(); }
}
private string _value;
public string Value
{
get { return _value; }
set { _value = value; RaisePropertyChanged(); }
}
}
/// 机台原点偏差配置
public class MachineOffsetConfig : ConfigBase
{
private double _Offset;
public double Offset
{
get { return _Offset; }
set { _Offset = value; RaisePropertyChanged(); }
}
private long _id;
public long Id
{
get { return _id; }
set { _id = value; RaisePropertyChanged(); }
}
private int _axis_No;
public int Axis_No
{
get { return _axis_No; }
set { _axis_No = value; RaisePropertyChanged(); }
}
private int _merged;
public int Merged
{
get { return _merged; }
set { _merged = value; RaisePropertyChanged(); }
}
}
}