Skip to content

Commit

Permalink
chore: Added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
samtrion committed Jun 18, 2024
1 parent ec2a2ff commit 2e54149
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/NetEvolve.ArchiDuct/Abstractions/IArchitecture.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
namespace NetEvolve.ArchiDuct.Abstractions;

/// <summary>
/// Describes the requested assemblies, types, members and namespaces.
/// </summary>
public interface IArchitecture
{
/// <summary>
/// List of all assemblies.
/// </summary>
AssemblyDictionary Assemblies { get; }

/// <summary>
/// List of all members.
/// </summary>
MembersDictionary Members { get; }

/// <summary>
/// List of all namespaces.
/// </summary>
NamespaceDictionary Namespaces { get; }

/// <summary>
/// List of all types.
/// </summary>
TypesDictionary Types { get; }
}

0 comments on commit 2e54149

Please sign in to comment.