2025-09-06 19:51:07 +02:00

13 lines
501 B
C#

using Liber_Incantamentum.Application.Authentification.DTOs.Request;
using Liber_Incantamentum.Application.Authentification.DTOs.Response;
namespace Liber_Incantamentum.Application.Authentification.Interfaces
{
public interface IAuthentificationService
{
Task<UserResponseDto> RegisterUserAsync(RegisterRequestDto user);
Task<IEnumerable<UserResponseDto>> GetAllUsersAsync(UserFilterDto filter);
Task<UserResponseDto> LoginUserAsync(LoginRequestDto user);
}
}