using Microsoft.Toolkit.Mvvm.ComponentModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.JXJFoodSmallStation.Model.GVL { public class PlcInfos: ObservableObject { public int Count { get { return _Count; } set { _Count = value;OnPropertyChanged(); } } private int _Count { get; set; } public string Name { get { return _Name; } set { _Name = value; OnPropertyChanged(); } } private string _Name { get; set; } public string Address { get { return _Address; } set { _Address = value; OnPropertyChanged(); } } private string _Address { get; set; } public string Type { get { return _Type; } set { _Type = value; OnPropertyChanged(); } } private string _Type { get; set; } public string Describe { get { return _Describe; } set { _Describe = value; OnPropertyChanged(); } } private string _Describe { get; set; } public string Value { get { return _Value; } set { _Value = value; OnPropertyChanged(); } } private string _Value { get; set; } } }