终端一体化运控平台
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

31 líneas
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 BPASmart.Model
  8. {
  9. public class Property : ObservableObject
  10. {
  11. public string PropertyId { get { return _propertyId; } set { _propertyId = value; OnPropertyChanged(); } }
  12. private string _propertyId;
  13. /// <summary>
  14. /// 属性名称
  15. /// </summary>
  16. public string PropertyName { get { return _propertyName; } set { _propertyName = value; OnPropertyChanged(); } }
  17. private string _propertyName;
  18. /// <summary>
  19. /// 属性值
  20. /// </summary>
  21. public string PropertyValue { get { return _propertyValue; } set { _propertyValue = value; OnPropertyChanged(); } }
  22. private string _propertyValue;
  23. /// <summary>
  24. /// 属性说明
  25. /// </summary>
  26. public string PropertyDescription { get { return _propertyDsecription; } set { _propertyDsecription = value; OnPropertyChanged(); } }
  27. public string _propertyDsecription;
  28. }
  29. }