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;
///
/// 属性名称
///
public string PropertyName { get { return _propertyName; } set { _propertyName = value; OnPropertyChanged(); } }
private string _propertyName;
///
/// 属性值
///
public string PropertyValue { get { return _propertyValue; } set { _propertyValue = value; OnPropertyChanged(); } }
private string _propertyValue;
///
/// 属性说明
///
public string PropertyDescription { get { return _propertyDsecription; } set { _propertyDsecription = value; OnPropertyChanged(); } }
public string _propertyDsecription;
}
}