Добавлена минификация html
This commit is contained in:
19
SQLLinter/Infrastructure/Diagram/Models/BpmnProcess.cs
Normal file
19
SQLLinter/Infrastructure/Diagram/Models/BpmnProcess.cs
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user