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