8 lines
201 B
C#
8 lines
201 B
C#
namespace WatchIt.Website.Services.Authentication;
|
|
|
|
public interface IAuthenticationService
|
|
{
|
|
Task<User?> GetUserAsync();
|
|
Task<bool> GetAuthenticationStatusAsync();
|
|
Task LogoutAsync();
|
|
} |