using CapMachine.Model.CANLIN; 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 CanLinRWConfigDto : BindableBase { /// /// 主键 /// public long Id { get; set; } private RW _RWInfo; /// /// 输入输出信息 读取/写入/系统 /// public RW RWInfo { get { return _RWInfo; } set { _RWInfo = value; RaisePropertyChanged(); } } private string? _Name; /// /// 配置项名称-比如转速、功率限制等 /// public string? Name { get { return _Name; } set { _Name = value; RaisePropertyChanged(); } } private string? _Content; /// /// 配置项值 /// public string? Content { get { return _Content; } set { _Content = value; RaisePropertyChanged(); } } private string? _DefautValue; /// /// 配置项默认值和数据 /// public string? DefautValue { get { return _DefautValue; } set { _DefautValue = value; RaisePropertyChanged(); } } } }