Skip to content

Commit

Permalink
Merge pull request #2518 from niimima/master
Browse files Browse the repository at this point in the history
Update IModuleGroupsCatalog
  • Loading branch information
dansiegel authored Aug 2, 2021
2 parents b316496 + d65461a commit 81c6cca
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Wpf/Prism.Wpf/Modularity/IModuleGroupsCatalog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@

namespace Prism.Modularity
{
/// <summary>
/// Defines a model that can get the collection of <see cref="IModuleCatalogItem"/>.
/// </summary>
public interface IModuleGroupsCatalog
{
/// <summary>
/// Gets the items in the <see cref="IModuleCatalog"/>. This property is mainly used to add <see cref="IModuleInfoGroup"/>s or
/// <see cref="IModuleInfo"/>s through XAML.
/// </summary>
/// <value>The items in the catalog.</value>
Collection<IModuleCatalogItem> Items { get; }
}
}

0 comments on commit 81c6cca

Please sign in to comment.