49 lines
1.3 KiB
C#
49 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Telerik.Windows.Controls;
|
|
|
|
namespace SWS.Electrical.Models
|
|
{
|
|
public class DtoDrawing : ViewModelBase
|
|
{
|
|
private string _DrawingFileID;
|
|
/// <summary>
|
|
/// 图纸ID
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[Description("图纸ID")]
|
|
public string DrawingFileID
|
|
{
|
|
get { return _DrawingFileID; }
|
|
set { _DrawingFileID = value; RaisePropertyChanged(nameof(DrawingFileID)); }
|
|
}
|
|
|
|
private string _DrawingFileName;
|
|
/// <summary>
|
|
/// 图纸文件名称
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[Description("图纸名称")]
|
|
public string DrawingFileName
|
|
{
|
|
get { return _DrawingFileName; }
|
|
set { _DrawingFileName = value; RaisePropertyChanged(nameof(DrawingFileName)); }
|
|
}
|
|
private bool _isChecked=false;
|
|
/// <summary>
|
|
/// 是否选中
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[Description("选中")]
|
|
public bool isChecked
|
|
{
|
|
get { return _isChecked; }
|
|
set { _isChecked = value; RaisePropertyChanged(nameof(isChecked)); }
|
|
}
|
|
}
|
|
}
|