Доработан билдер BPMN

This commit is contained in:
FrigaT
2025-12-26 16:24:07 +03:00
parent 0711d06884
commit c71e15c37f
14 changed files with 912 additions and 238 deletions

View File

@@ -0,0 +1,19 @@
namespace SQLLinter.Infrastructure.Diagram;
/// <summary>
/// Процесс BPMN
/// </summary>
public class BpmnProcess
{
/// <summary> Уникальный идентификатор процесса </summary>
public string Id { get; set; } = string.Empty;
/// <summary> Название процесса </summary>
public string Name { get; set; } = string.Empty;
/// <summary> Узлы процесса </summary>
public List<BpmnNode> Nodes { get; set; } = new();
/// <summary> Связи процесса </summary>
public List<BpmnEdge> Edges { get; set; } = new();
}