10 lines
239 B
C#
10 lines
239 B
C#
|
using DamageAssesment.Api.SurveyResponses.Models;
|
|||
|
|
|||
|
namespace DamageAssesment.Api.SurveyResponses.Interfaces
|
|||
|
{
|
|||
|
public interface IHttpUtil
|
|||
|
{
|
|||
|
Task<string> SendAsync(HttpMethod method, string url, string JsonInput);
|
|||
|
}
|
|||
|
}
|