PokemonSleepTools/PokemonSleepInterface/Service/IService/IBaseService.cs

11 lines
225 B
C#

using PokemonSleepInterface.Models;
namespace PokemonSleepInterface.Service.IService
{
public interface IBaseService
{
Task<ResponseDto?> SendAsync(RequestDto requestDto, bool withBearer = true);
}
}