twogood / Activout.RestClient

Create a REST(ish) API client only by defining the C# interface you want

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PatchAttribute

twogood opened this issue · comments

  public class PatchAttribute : HttpMethodAttribute
        {
            public PatchAttribute(string template = null)
                : base(HttpMethod.Patch, template)
            {
            }
        }