16 lines
322 B
C#
16 lines
322 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Maki.Rest
|
|||
|
{
|
|||
|
internal class RestResponse<T>
|
|||
|
{
|
|||
|
public RestRequestMethod Method;
|
|||
|
public Uri Uri;
|
|||
|
public ushort Status;
|
|||
|
public RestErrorCode ErrorCode;
|
|||
|
public string ErrorMessage;
|
|||
|
public string RawResponse;
|
|||
|
public T Response;
|
|||
|
}
|
|||
|
}
|