Files
octokit.net/Octokit/Http/Response.cs
Haacked be9f446df4 Move Response to its own file and Internal namespace
A class named "Response" could conflict with a lot of things.
2015-01-04 19:03:25 -08:00

22 lines
608 B
C#

using System;
using System.Collections.Generic;
using System.Net;
namespace Octokit.Internal
{
public class Response : IResponse
{
public Response()
{
Headers = new Dictionary<string, string>();
}
public object BodyAsObject { get; set; }
public string Body { get; set; }
public Dictionary<string, string> Headers { get; private set; }
public Uri ResponseUri { get; set; }
public ApiInfo ApiInfo { get; set; }
public HttpStatusCode StatusCode { get; set; }
public string ContentType { get; set; }
}
}