ln.http/IHTTPResource.cs

9 lines
145 B
C#
Raw Permalink Normal View History

2019-11-26 12:20:50 +01:00
using System;
namespace ln.http
{
public interface IHTTPResource
{
HttpResponse GetResponse(HttpRequest httpRequest);
}
}