Files
Umbraco-CMS/src/Umbraco.Web/Mvc/PostedDataProxyInfo.cs
2018-06-29 19:52:40 +02:00

13 lines
291 B
C#

using System;
namespace Umbraco.Web.Mvc
{
/// <summary>
/// Represents the data required to proxy a request to a surface controller for posted data
/// </summary>
internal class PostedDataProxyInfo : RouteDefinition
{
public string Area { get; set; }
}
}