/
qwiklly
/
arc-server
Обзор
Документация
Войти
/
qwiklly
/
arc-server
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
src/AppRemoteConfig/Services/Interfaces/IUserService.cs
24 строки
594 B
CLTanuki
chore(#7): folders and namespaces
10 янв 2024, 18:24
10 янв 2024, 18:24
0776eab
Код
Авторство
О чём код?
namespace AppRemoteConfig.Services.Interfaces { using AppRemoteConfig.Helpers.Auth; using AppRemoteConfig.Models.Dto; public interface IUserService { Task<IEnumerable<AppUserDto>> ListAppUsers(); Task<AppUserDto?> GetAppUser(Guid id); Task<AppUserDto?> PutAppUser(AppUserDto appUser); Task<bool> DeleteAppUser(Guid id); Task<bool> LoginUser(AppUserLoginDto userDto); Task<AppUserLoginDto?> RegisterUser(AppUserCreateRequest userCreateRequest); Task<bool> LogoutUser(); Task<UserInfo> GetUserInfo(); } }