8 lines
184 B
C#
8 lines
184 B
C#
|
namespace DamageAssesment.Api.UsersAccess.Interfaces
|
|||
|
{
|
|||
|
public interface IHttpUtil
|
|||
|
{
|
|||
|
Task<string> SendAsync(HttpMethod method, string url, string JsonInput);
|
|||
|
}
|
|||
|
}
|