15 lines
307 B
C#
15 lines
307 B
C#
namespace LaaProduction.Services.Interfaces
|
|
{
|
|
using LaaProduction.Services.Models;
|
|
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
public interface IHttpService
|
|
{
|
|
Task<HttpResponseModel> GetAsync(String path);
|
|
|
|
Task<HttpResponseModel> OptionsAsync(String path);
|
|
}
|
|
}
|