终端一体化运控平台
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

28 wiersze
1.1 KiB

  1. using Microsoft.Toolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.JXJFoodSmallStation.Model.GVL
  8. {
  9. public class PlcInfos: ObservableObject
  10. {
  11. public int Count { get { return _Count; } set { _Count = value;OnPropertyChanged(); } }
  12. private int _Count { get; set; }
  13. public string Name { get { return _Name; } set { _Name = value; OnPropertyChanged(); } }
  14. private string _Name { get; set; }
  15. public string Address { get { return _Address; } set { _Address = value; OnPropertyChanged(); } }
  16. private string _Address { get; set; }
  17. public string Type { get { return _Type; } set { _Type = value; OnPropertyChanged(); } }
  18. private string _Type { get; set; }
  19. public string Describe { get { return _Describe; } set { _Describe = value; OnPropertyChanged(); } }
  20. private string _Describe { get; set; }
  21. public string Value { get { return _Value; } set { _Value = value; OnPropertyChanged(); } }
  22. private string _Value { get; set; }
  23. }
  24. }