using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using SWS.Model; using Telerik.Windows.Controls; namespace SWS.Electrical.Models { public class DtoAnnotation : DtoDrawing { private string _Status; /// /// 已刷新 未刷新 /// /// public string Status { get { return _Status; } set { _Status = value; RaisePropertyChanged(nameof(Status)); } } private string _ObjectTypeName; /// /// 元件类型 /// public string ObjectTypeName { get { return _ObjectTypeName; } set { _ObjectTypeName = value; RaisePropertyChanged(nameof(ObjectTypeName)); } } private string _TagNumber; /// /// 元件位号 /// public string TagNumber { get { return _TagNumber; } set { _TagNumber = value; RaisePropertyChanged(nameof(TagNumber)); } } /// /// 元件句柄 /// public string TagHandid { get; set; } /// /// 属性名 /// public string AttributeName { get; set; } private string _AttributeValue; /// /// 属性值 /// public string AttributeValue { get { return _AttributeValue; } set { _AttributeValue = value; RaisePropertyChanged(nameof(AttributeValue)); } } /// /// 标注句柄 /// public string AnnotationHandid { get; set; } /// /// 标注值 /// public string AnnotationValue { get; set; } } }