14 lines
323 B
C#
14 lines
323 B
C#
namespace Umbraco.Web.Mvc
|
|
{
|
|
/// <summary>
|
|
/// constants
|
|
/// </summary>
|
|
/// Migrated already to .Net Core
|
|
internal static class Constants
|
|
{
|
|
internal const string ViewLocation = "~/Views";
|
|
|
|
internal const string DataTokenCurrentViewContext = "umbraco-current-view-context";
|
|
}
|
|
}
|