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
{
public class FeederClearWork : BindableBase
{
private string _Name;
public string Name
{
get { return _Name; }
set { SetProperty(ref _Name, value); }
}
private DateTime _CreateTime;
public DateTime CreateTime
{
get { return _CreateTime; }
set { SetProperty(ref _CreateTime, value); }
}
private VibrationFunction _BeforeOutput;
///
/// 清料前输出信号
///
public VibrationFunction BeforeOutput
{
get { return _BeforeOutput; }
set { SetProperty(ref _BeforeOutput, value); }
}
private bool _BeforeScript;
public bool BeforeScript
{
get { return _BeforeScript; }
set { SetProperty(ref _BeforeScript, value); }
}
private VibrationFunction _BackOutput;
///
/// 清料后输出信号
///
public VibrationFunction BackOutput
{
get { return _BackOutput; }
set { SetProperty(ref _BackOutput, value); }
}
private bool _BackScript;
public bool BackScript
{
get { return _BackScript; }
set { SetProperty(ref _BackScript, value); }
}
private FeederWorks _FeederWorks;
///
/// Feeder振动集合
///
public FeederWorks FeederWorks
{
get { return _FeederWorks; }
set { SetProperty(ref _FeederWorks, value); }
}
private int _ClearCount;
public int ClearCount
{
get { return _ClearCount; }
set { SetProperty(ref _ClearCount, value); }
}
private int _VibrationCount;
public int VibrationCount
{
get { return _VibrationCount; }
set { SetProperty(ref _VibrationCount, value); }
}
}
}