mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
11 lines
424 B
C#
11 lines
424 B
C#
using Application.Classes;
|
|
using Application.DataTransferObjects.Authentication;
|
|
|
|
namespace Application.Interfaces;
|
|
|
|
public interface IAuthenticationRepository
|
|
{
|
|
Task<Result<LoginResponseDto>> LoginAsync(LoginRequestDto loginRequestDto, CancellationToken cancellationToken);
|
|
|
|
Task<Result<LoginResponseDto>> RegisterToApplicationAsync(RegisterRequestDto registerRequestDto, CancellationToken cancellationToken);
|
|
} |