Доработан билдер BPMN
This commit is contained in:
13
SQLLinter/Infrastructure/Diagram/BpmnDiagram.cs
Normal file
13
SQLLinter/Infrastructure/Diagram/BpmnDiagram.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace SQLLinter.Infrastructure.Diagram;
|
||||
|
||||
/// <summary>
|
||||
/// Диаграмма BPMN, объединяющая процессы
|
||||
/// </summary>
|
||||
public class BpmnDiagram
|
||||
{
|
||||
/// <summary> Процессы диаграммы </summary>
|
||||
public List<BpmnProcess> Processes { get; set; } = new();
|
||||
|
||||
/// <summary> Глобальные связи между процессами </summary>
|
||||
public List<BpmnEdge> GlobalEdges { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user