laatzen/LaaProductionWeb/LaaProduction.Services/Interfaces/IHttpService.cs
2024-07-17 13:13:41 +02:00

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