Untitled
unknown
csharp
4 years ago
328 B
5
Indexable
public interface IAuthenticator
{
Account CurrentAccount { get; }
bool IsLoggedIn { get; }
event Action StateChanged;
Task<RegistrationResult> Register(string email, string password, string confirmPassword);
Task Login(string email, string password);
void Logout();
}
Editor is loading...