10 lines
238 B
C#
Raw Permalink Normal View History

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