mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-09 10:46:37 +08:00
sfc逻辑基本完成
This commit is contained in:
@@ -135,5 +135,19 @@ namespace AIStudio.Wpf.SFC.ViewModels
|
||||
SetProperty(ref _value, value);
|
||||
}
|
||||
}
|
||||
|
||||
private int _status;
|
||||
|
||||
public int Status
|
||||
{
|
||||
get { return _status; }
|
||||
set
|
||||
{
|
||||
SetProperty(ref _status, value);
|
||||
}
|
||||
}
|
||||
|
||||
public List<SFCNode> NextNode { get; set; } = new List<SFCNode>();
|
||||
public List<SFCNode> PreNode { get; set; } = new List<SFCNode>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user