Files
aistudio-wpf-diagram/Extensions/AIStudio.Wpf.Flowchart/ViewModels/MiddleFlowNodeData.cs

52 lines
997 B
C#
Raw Normal View History

2022-12-12 22:33:17 +08:00
using AIStudio.Wpf.DiagramDesigner;
2021-07-29 13:55:18 +08:00
namespace AIStudio.Wpf.Flowchart.ViewModels
{
2022-12-12 22:33:17 +08:00
public class MiddleFlowNodeData : BindableBase
{
2022-12-12 22:33:17 +08:00
private string _title;
public string Title
{
get
{
return _title;
}
set
{
SetProperty(ref _title, value);
}
}
public MiddleFlowNodeData()
{
Title = "审批";
}
private int _status = 100;
public int Status
{
get
{
return _status;
}
set
{
SetProperty(ref _status, value);
}
}
2023-05-21 23:03:28 +08:00
private string _remark = "同意";
public string Remark
{
get
{
return _remark;
}
set
{
SetProperty(ref _remark, value);
}
}
}
}