Last active
May 27, 2020 12:45
-
-
Save quicksln/00d8cf598c6ee4961f22839d05d9c2db to your computer and use it in GitHub Desktop.
UserStore.cs interfaces currently implemented in LiteDB.Identity
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class UserStore<TUser, TRole, TUserRole, TUserClaim, TUserLogin, TUserToken> : | |
IUserLoginStore<TUser>, | |
IUserStore<TUser>, | |
IUserRoleStore<TUser>, | |
IUserClaimStore<TUser>, | |
IUserPasswordStore<TUser>, | |
IUserSecurityStampStore<TUser>, | |
IUserEmailStore<TUser>, | |
IUserLockoutStore<TUser>, | |
IUserPhoneNumberStore<TUser>, | |
IQueryableUserStore<TUser>, | |
IUserTwoFactorStore<TUser>, | |
IUserAuthenticationTokenStore<TUser>, | |
IUserAuthenticatorKeyStore<TUser>, | |
IUserTwoFactorRecoveryCodeStore<TUser>, | |
IDisposable |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment