source: iknow-api/Services/Interfaces/IAuthService.cs@ 271178d

Last change on this file since 271178d was 271178d, checked in by stefansaveski <stefansaveski19@…>, 11 months ago

Refactor all namespaces to iknow_api

  • Property mode set to 100644
File size: 246 bytes
Line 
1using iknow_api.DTOs;
2
3namespace iknow_api.Services
4{
5 public interface IAuthService
6 {
7 Task<bool> RegisterAsync(UserDto userDto);
8 Task<string?> LoginAsync(UserDto userDto);
9 Task<int> GetUsersCountAsync();
10 }
11}
Note: See TracBrowser for help on using the repository browser.