mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +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; }
|
|
}
|
|
}
|
|
}
|