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 ConfigLimitDto : BindableBase { /// /// 主键 /// public long Id { get; set; } private string? _MeterName; /// /// 仪表名称 /// public string? MeterName { get { return _MeterName; } set { _MeterName = value; RaisePropertyChanged(); } } private int _IndexNo; /// /// 序号 /// public int IndexNo { get { return _IndexNo; } set { _IndexNo = value; RaisePropertyChanged(); } } private decimal _Up; /// /// Up /// public decimal Up { get { return _Up; } set { _Up = value; RaisePropertyChanged(); } } private decimal _Down; /// /// Down /// public decimal Down { get { return _Down; } set { _Down = value; RaisePropertyChanged(); } } } }