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 LINConfigExdDto : BindableBase
{
///
/// 主键
///
public long Id { get; set; }
private int _BaudRate;
///
/// 波特率
///
public int BaudRate
{
get { return _BaudRate; }
set { _BaudRate = value; RaisePropertyChanged(); }
}
private int _Cycle;
///
/// 周期
///
public int Cycle
{
get { return _Cycle; }
set { _Cycle = value; RaisePropertyChanged(); }
}
private string? _LdfPath;
///
/// Ldf文件路径
///
public string? LdfPath
{
get { return _LdfPath; }
set { _LdfPath = value; RaisePropertyChanged(); }
}
}
}