mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
39 lines
748 B
C#
39 lines
748 B
C#
using AIStudio.Wpf.ADiagram.Models;
|
|
|
|
namespace AIStudio.Wpf.ADiagram.Demos.Flowchart
|
|
{
|
|
public class MiddleFlowNodeData : TitleBindableBase
|
|
{
|
|
public MiddleFlowNodeData()
|
|
{
|
|
Title = "审批";
|
|
}
|
|
|
|
private int _status = 100;
|
|
public int Status
|
|
{
|
|
get
|
|
{
|
|
return _status;
|
|
}
|
|
set
|
|
{
|
|
SetProperty(ref _status, value);
|
|
}
|
|
}
|
|
|
|
private string _remark;
|
|
public string Remark
|
|
{
|
|
get
|
|
{
|
|
return _remark;
|
|
}
|
|
set
|
|
{
|
|
SetProperty(ref _remark, value);
|
|
}
|
|
}
|
|
}
|
|
}
|