11 lines
259 B
C#
11 lines
259 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Umbraco.Core.Configuration.UmbracoSettings
|
|
{
|
|
public interface IHelpSection : IUmbracoConfigurationSection
|
|
{
|
|
string DefaultUrl { get; }
|
|
|
|
IEnumerable<ILink> Links { get; }
|
|
}
|
|
} |