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