using BPA.Helper; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.CustomResource.Pages.Model { public class PlcVariableInfoModel : NotifyBase { //public int Id { get { return _id; } set { _id = value;OnPropertyChanged(); } } //private int _id; public string PlcAddress { get { return plcAddress; } set { plcAddress = value; OnPropertyChanged(); } } private string plcAddress; public int? Length { get { return length; } set { length = value; OnPropertyChanged(); } } private int? length; } }