using System; namespace Maki.Rest { internal class RestResponse { public RestRequestMethod Method; public Uri Uri; public ushort Status; public RestErrorCode ErrorCode; public string ErrorMessage; public string RawResponse; public T Response; } }