Доработан билдер BPMN
This commit is contained in:
22
SQLLinter/Infrastructure/Diagram/BpmnNode.cs
Normal file
22
SQLLinter/Infrastructure/Diagram/BpmnNode.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
namespace SQLLinter.Infrastructure.Diagram;
|
||||
|
||||
/// <summary>
|
||||
/// Узел BPMN
|
||||
/// </summary>
|
||||
public class BpmnNode
|
||||
{
|
||||
///<summary> Уникальный идентификатор узла </summary>
|
||||
public string Id { get; set; } = string.Empty;
|
||||
|
||||
///<summary> Метка/название узла </summary>
|
||||
public string Label { get; set; } = string.Empty;
|
||||
|
||||
///<summary> Тип узла </summary>
|
||||
public BpmnNodeType Type { get; set; }
|
||||
|
||||
/// <summary> Идентификатор подпроцесса (если тип узла - Subprocess) </summary>
|
||||
public string SubprocessId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary> Дополнительные свойства узла </summary>
|
||||
public Dictionary<string, string> Properties { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user