10 lines
152 B
C#
10 lines
152 B
C#
using System.Web;
|
|
|
|
namespace Umbraco.Web
|
|
{
|
|
public interface IHttpContextAccessor
|
|
{
|
|
HttpContextBase HttpContext { get; set; }
|
|
}
|
|
}
|