终端一体化运控平台
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

31 lines
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. }