17 lines
463 B
C#
17 lines
463 B
C#
namespace Umbraco.Web.Features
|
|
{
|
|
/// <summary>
|
|
/// Represents Umbraco features that can be toggled
|
|
/// </summary>
|
|
internal class UmbracoFeatures
|
|
{
|
|
public UmbracoFeatures()
|
|
{
|
|
DisabledFeatures = new DisabledFeatures();
|
|
}
|
|
|
|
public DisabledFeatures DisabledFeatures { get; set; }
|
|
|
|
//NOTE: Currently we can only Disable features but maybe some day we could enable non standard features too
|
|
}
|
|
} |