2023-10-20 11:40:03 -05:00
|
|
|
using DamageAssesment.Api.Responses.Models;
|
2023-09-04 20:31:41 -05:00
|
|
|
|
2023-10-04 17:45:51 -05:00
|
|
|
namespace DamageAssesment.Api.Responses.Interfaces
|
2023-09-04 20:31:41 -05:00
|
|
|
{
|
|
|
|
public interface IHttpUtil
|
|
|
|
{
|
2023-09-19 23:32:30 -05:00
|
|
|
Task<string> SendAsync(HttpMethod method, string url, string JsonInput, string token);
|
2023-09-04 20:31:41 -05:00
|
|
|
}
|
|
|
|
}
|