Skip to content

Commit

Permalink
Added an externalSoftwareSystemBoundariesVisible property to Containe…
Browse files Browse the repository at this point in the history
…rView, to set whether software system boundaries should be visible for "external" containers (those outside the software system in scope).
  • Loading branch information
simonbrowndotje committed Mar 11, 2020
1 parent 220f2e5 commit 13f6213
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Structurizr.Core/View/ContainerView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ public override string Name
}
}

/// <summary>
/// Determines whether software system boundaries should be visible for "external" containers (those outside the software system in scope).
/// </summary>
[DataMember(Name = "externalSoftwareSystemBoundariesVisible", EmitDefaultValue = false)]
public bool? ExternalSoftwareSystemBoundariesVisible { get; set; }

internal ContainerView() : base()
{
}
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.9.7 (unreleased)

- Added an ExternalSoftwareSystemBoundariesVisible property to ContainerView, to set whether software system boundaries should be visible for "external" containers (those outside the software system in scope).

## 0.9.6 (29th February 2020)

- Added A1 and A0 paper sizes.
Expand Down

0 comments on commit 13f6213

Please sign in to comment.