Archived
1
0
Fork 0
This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
maki/Maki/Rest/RestResponse.cs
2017-05-14 14:02:51 +02:00

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;
}
}