generated from egmont11/ASP.Net-Core-MVC-Template
13 lines
327 B
C#
13 lines
327 B
C#
namespace Eshop.Application.Auth;
|
|
|
|
public interface IAuthenticationService
|
|
{
|
|
Task<SignInResultDto> SignInAsync(
|
|
string emailOrUsername,
|
|
string password,
|
|
bool rememberMe,
|
|
CancellationToken cancellationToken = default);
|
|
|
|
Task SignOutAsync(CancellationToken cancellationToken = default);
|
|
}
|