10 lines
227 B
C#
Raw Permalink Normal View History

2023-10-04 18:45:51 -04:00
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);
}
}