Bit of cleanup

This commit is contained in:
Stephan
2019-01-18 10:02:47 +01:00
parent a7a3fca8a8
commit 437385fd61
22 changed files with 116 additions and 91 deletions

View File

@@ -0,0 +1,18 @@
namespace Umbraco.Core.Models.Trees
{
/// <summary>
/// Defines a back office section.
/// </summary>
public interface IBackOfficeSection
{
/// <summary>
/// Gets the alias of the section.
/// </summary>
string Alias { get; }
/// <summary>
/// Gets the name of the section.
/// </summary>
string Name { get; }
}
}