source: iknow-api/Services/Interfaces/IAuthService.cs@ 4e061d8

Last change on this file since 4e061d8 was 4e061d8, checked in by imbrsk <boris696boris@…>, 11 months ago

Implement refresh token functionality with associated services and repositories

  • Property mode set to 100644
File size: 263 bytes
RevLine 
[271178d]1using iknow_api.DTOs;
[fc7b4b4]2
[271178d]3namespace iknow_api.Services
[fc7b4b4]4{
5 public interface IAuthService
6 {
[cb8e531]7 Task<bool> RegisterAsync(RegisterDto registerDto);
[4e061d8]8 Task<AuthResultDto?> LoginAsync(LoginDto loginDto);
[fc7b4b4]9 Task<int> GetUsersCountAsync();
10 }
11}
Note: See TracBrowser for help on using the repository browser.