using Apewer.Web;
using System;
using System.Collections.Generic;
using System.Text;
namespace Apewer.AspNetBridge
{
///
public interface IHttpActionResult { }
///
public class HttpActionResult : IHttpActionResult
{
///
public int Status { get; set; }
///
public string ContentType { get; set; }
///
public string Attachment { get; set; }
///
public byte[] Bytes { get; set; }
///
public StringPairs Cookies { get; set; }
///
public HttpActionResult()
{
Cookies = new StringPairs();
}
}
}