14 lines
247 B
C#
14 lines
247 B
C#
namespace Oqtane.Shared
|
|
{
|
|
public enum ExternalLoginStatus
|
|
{
|
|
Success,
|
|
InvalidEmail,
|
|
DuplicateEmail,
|
|
UserNotCreated,
|
|
UserDoesNotExist,
|
|
ProviderKeyMismatch,
|
|
VerificationRequired
|
|
}
|
|
}
|