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;
///
/// 速度循环个数 信息
///
public int Cycle
{
get { return _Cycle; }
set { _Cycle = value; RaisePropertyChanged(); }
}
private bool _IsSlop;
///
/// 是否是斜率 信息
///
public bool IsSlop
{
get { return _IsSlop; }
set { _IsSlop = value; RaisePropertyChanged(); }
}
}
}