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.
|
- using Microsoft.Toolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmart.Model
- {
- public class Property : ObservableObject
- {
- public string PropertyId { get { return _propertyId; } set { _propertyId = value; OnPropertyChanged(); } }
- private string _propertyId;
- /// <summary>
- /// 属性名称
- /// </summary>
- public string PropertyName { get { return _propertyName; } set { _propertyName = value; OnPropertyChanged(); } }
- private string _propertyName;
- /// <summary>
- /// 属性值
- /// </summary>
- public string PropertyValue { get { return _propertyValue; } set { _propertyValue = value; OnPropertyChanged(); } }
- private string _propertyValue;
- /// <summary>
- /// 属性说明
- /// </summary>
- public string PropertyDescription { get { return _propertyDsecription; } set { _propertyDsecription = value; OnPropertyChanged(); } }
- public string _propertyDsecription;
- }
- }
|