Skip to content

Instantly share code, notes, and snippets.

@quicksln
Last active May 27, 2020 12:45
Show Gist options
  • Save quicksln/00d8cf598c6ee4961f22839d05d9c2db to your computer and use it in GitHub Desktop.
Save quicksln/00d8cf598c6ee4961f22839d05d9c2db to your computer and use it in GitHub Desktop.
UserStore.cs interfaces currently implemented in LiteDB.Identity
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