2023-10-04 18:45:51 -04:00
|
|
|
|
using DamageAssesment.Api.Responses.Models;
|
2023-09-04 21:31:41 -04:00
|
|
|
|
|
2023-10-04 18:45:51 -04:00
|
|
|
|
namespace DamageAssesment.Api.Responses.Interfaces
|
2023-09-04 21:31:41 -04:00
|
|
|
|
{
|
|
|
|
|
public interface IHttpUtil
|
|
|
|
|
{
|
|
|
|
|
Task<string> SendAsync(HttpMethod method, string url, string JsonInput);
|
|
|
|
|
}
|
|
|
|
|
}
|