Files
Umbraco-CMS/src/Umbraco.Web/Mvc/PluginControllerMetadata.cs

15 lines
380 B
C#
Raw Normal View History

using System;
namespace Umbraco.Web.Mvc
{
/// <summary>
/// Represents some metadata about the surface controller
/// </summary>
internal class PluginControllerMetadata
{
internal Type ControllerType { get; set; }
internal string ControllerName { get; set; }
internal string ControllerNamespace { get; set; }
internal string AreaName { get; set; }
}
}