添加 MX-PD-盘古 项目文件
将 MX-PD-盘古 - new 目录下的所有文件添加到主仓库
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
using Stylet;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MainShell.Recipe.Models
|
||||
{
|
||||
public class RecipeWrap : PropertyChangedBase
|
||||
{
|
||||
private string _recipeName;
|
||||
|
||||
public string RecipeName
|
||||
{
|
||||
get { return _recipeName; }
|
||||
set { SetAndNotify(ref _recipeName, value); }
|
||||
}
|
||||
private DateTime _createTime;
|
||||
|
||||
public DateTime CreateTime
|
||||
{
|
||||
get { return _createTime; }
|
||||
set { SetAndNotify(ref _createTime, value); }
|
||||
}
|
||||
private DateTime _modifiedTime;
|
||||
|
||||
public DateTime ModifiedTime
|
||||
{
|
||||
get { return _modifiedTime; }
|
||||
set { SetAndNotify(ref _modifiedTime, value); }
|
||||
}
|
||||
|
||||
private bool _isInUse;
|
||||
|
||||
public bool IsInUse
|
||||
{
|
||||
get { return _isInUse; }
|
||||
set { SetAndNotify(ref _isInUse, value); }
|
||||
}
|
||||
private bool _hasError;
|
||||
|
||||
public bool HasError
|
||||
{
|
||||
get { return _hasError; }
|
||||
set { SetAndNotify(ref _hasError, value); }
|
||||
}
|
||||
private bool _needUpdate;
|
||||
/// <summary>
|
||||
/// 重命名&删除时
|
||||
/// </summary>
|
||||
public bool NeedUpdate
|
||||
{
|
||||
get { return _needUpdate; }
|
||||
set { SetAndNotify(ref _needUpdate, value); }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user