Files
Umbraco-CMS/src/Umbraco.Core/Configuration/UmbracoSettings/IContentErrorPage.cs

14 lines
347 B
C#
Raw Normal View History

using System;
namespace Umbraco.Core.Configuration.UmbracoSettings
2013-11-07 17:16:22 +01:00
{
public interface IContentErrorPage
{
int ContentId { get; }
Guid ContentKey { get; }
string ContentXPath { get; }
bool HasContentId { get; }
bool HasContentKey { get; }
2013-11-07 17:16:22 +01:00
string Culture { get; set; }
}
}