mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
27 lines
898 B
C#
27 lines
898 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net.Http;
|
|
|
|
namespace Octokit.Internal
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1724:TypeNamesShouldNotMatchNamespaces")]
|
|
public class Request : IRequest
|
|
{
|
|
public Request()
|
|
{
|
|
Headers = new Dictionary<string, string>();
|
|
Parameters = new Dictionary<string, string>();
|
|
Timeout = TimeSpan.FromSeconds(100);
|
|
}
|
|
|
|
public object Body { get; set; }
|
|
public Dictionary<string, string> Headers { get; private set; }
|
|
public HttpMethod Method { get; set; }
|
|
public Dictionary<string, string> Parameters { get; private set; }
|
|
public Uri BaseAddress { get; set; }
|
|
public Uri Endpoint { get; set; }
|
|
public TimeSpan Timeout { get; set; }
|
|
public string ContentType { get; set; }
|
|
}
|
|
}
|