laatzen/LaaProductionWeb/LaaProduction.Services/Interfaces/IHttpService.cs
2023-06-19 15:43:55 +02:00

14 lines
289 B
C#

namespace LaaProduction.Services.Interfaces
{
using LaaProduction.Services.Models;
using System.Threading.Tasks;
public interface IHttpService
{
Task<HttpResponseModel> GetAsync(string path);
Task<HttpResponseModel> OptionsAsync(string path);
}
}