1
0
Files
mineplex-crepe/Website/LOC.Core/Data/IRestCallJsonWrapper.cs
2021-08-19 16:35:32 +07:00

11 lines
310 B
C#

namespace LOC.Core.Data
{
using System;
public interface IRestCallJsonWrapper
{
T MakeCall<T>(object data, Uri uri, RestCallType restCallType, double timeoutInSeconds = 100);
void MakeCall(object data, Uri uri, RestCallType restCallType, double timeoutInSeconds = 100);
}
}