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