using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TeamAAS_VP.Models.Torque
{
public class PickDynamicTestResult:BindableBase
{
private int _Index;
///
/// 序号
///
public int Index
{
get { return _Index; }
set { SetProperty(ref _Index, value); }
}
private DateTime _Timestamp;
///
/// 时间戳
///
public DateTime Timestamp
{
get { return _Timestamp; }
set { SetProperty(ref _Timestamp, value); }
}
private bool _IsPickSuccess;
public bool IsPickSuccess
{
get { return _IsPickSuccess; }
set { SetProperty(ref _IsPickSuccess, value); }
}
private float _X_Position;
public float X_Position
{
get { return _X_Position; }
set { SetProperty(ref _X_Position, value); }
}
private float _Y_Position;
public float Y_Position
{
get { return _Y_Position; }
set { SetProperty(ref _Y_Position, value); }
}
private float _Z_Position;
public float Z_Position
{
get { return _Z_Position; }
set { SetProperty(ref _Z_Position, value); }
}
private double _CycleTime;
///
/// 单次节拍
///
public double CycleTime
{
get { return _CycleTime; }
set { SetProperty(ref _CycleTime, value); }
}
}
}