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
Line 
1using iknow_api.DTOs;
2
3namespace iknow_api.Services
4{
5 public interface IAuthService
6 {
7 Task<bool> RegisterAsync(RegisterDto registerDto);
8 Task<AuthResultDto?> LoginAsync(LoginDto loginDto);
9 Task<int> GetUsersCountAsync();
10 }
11}
Note: See TracBrowser for help on using the repository browser.