e4edd8f692
This also removes some totally unused and ancient code
15 lines
434 B
C#
15 lines
434 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
|
|
namespace Umbraco.Core.Configuration.UmbracoSettings
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
[Obsolete("This is no longer used and will be removed in future versions")]
|
|
public interface IHelpSection : IUmbracoConfigurationSection
|
|
{
|
|
string DefaultUrl { get; }
|
|
|
|
IEnumerable<ILink> Links { get; }
|
|
}
|
|
} |