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