Skip to content

Commit

Permalink
Added xml-docs to IPageModel.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiepollock committed Jan 11, 2023
1 parent b894da1 commit 7820fb6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Rhythm.Models.Common/IPageModel.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
namespace Rhythm.Models.Common;

/// <summary>
/// An interface for creating a page.
/// </summary>
public interface IPageModel : IHaveComponents
{
/// <summary>
/// Gets the page content.
/// </summary>
IReadOnlyCollection<IComponentModel> Content { get; }
}

0 comments on commit 7820fb6

Please sign in to comment.