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