blob: c6152f29a988abad519240576188cd4b5a2c4aee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Collections.ObjectModel;
using System.Net.Http;
namespace System.Web.Http.Controllers
{
internal interface IActionHttpMethodProvider
{
Collection<HttpMethod> HttpMethods { get; }
}
}
|