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