V1.2
This commit is contained in:
33
CapMachine.Wpf/Dtos/CycleInfoDto.cs
Normal file
33
CapMachine.Wpf/Dtos/CycleInfoDto.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using Prism.Mvvm;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.Dtos
|
||||
{
|
||||
public class CycleInfoDto : BindableBase
|
||||
{
|
||||
private int _Cycle;
|
||||
/// <summary>
|
||||
/// 速度循环个数 信息
|
||||
/// </summary>
|
||||
public int Cycle
|
||||
{
|
||||
get { return _Cycle; }
|
||||
set { _Cycle = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private bool _IsSlop;
|
||||
/// <summary>
|
||||
/// 是否是斜率 信息
|
||||
/// </summary>
|
||||
public bool IsSlop
|
||||
{
|
||||
get { return _IsSlop; }
|
||||
set { _IsSlop = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user