mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-06 21:26:06 +00:00
15 lines
265 B
C#
15 lines
265 B
C#
using System.Net.Http;
|
|
|
|
namespace Octokit.Internal
|
|
{
|
|
public static class HttpVerb
|
|
{
|
|
static readonly HttpMethod patch = new HttpMethod("PATCH");
|
|
|
|
public static HttpMethod Patch
|
|
{
|
|
get { return patch; }
|
|
}
|
|
}
|
|
}
|