16 lines
343 B
C#
16 lines
343 B
C#
|
|
using System;
|
||
|
|
using System.Web;
|
||
|
|
using umbraco.presentation.LiveEditing;
|
||
|
|
using umbraco.BasePages;
|
||
|
|
using umbraco.cms.businesslogic.web;
|
||
|
|
|
||
|
|
namespace umbraco.presentation
|
||
|
|
{
|
||
|
|
public class UmbracoResponse : HttpResponseWrapper
|
||
|
|
{
|
||
|
|
public UmbracoResponse(HttpResponse response) : base(response)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|