14 lines
295 B
C#
14 lines
295 B
C#
namespace LaaProductionWeb.Services.Interfaces
|
|
{
|
|
using LaaProductionWeb.Services.Models;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
public interface IHttpService
|
|
{
|
|
Task<HttpResponseModel> GetAsync(string path);
|
|
|
|
Task<HttpResponseModel> OptionsAsync(string path);
|
|
}
|
|
}
|