laatzen/LaaProductionWeb/LaaProductionWeb.Services/Interfaces/IHttpService.cs
2023-05-03 08:21:21 +02:00

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);
}
}