Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yanjustino committed Mar 14, 2024
1 parent febfa7e commit 954304a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/C4Sharp/Diagrams/Plantuml/Constants/ElementName.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ public record ElementName
public static ElementName ExternalComponent => new() { Name = "external_component" };
public static ElementName Container => new() { Name = "container" };
public static ElementName ExternalContainer => new() { Name = "external_container" };
public static ElementName SystemBoundary => new() { Name = "system_boundary" };
public static ElementName ContainerBoundary => new() { Name = "container_boundary" };
public static ElementName EnterpriseBoundary => new() { Name = "enterprise_boundary" };

public string Name { get; private init; } = string.Empty;
}

0 comments on commit 954304a

Please sign in to comment.