mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
28 lines
544 B
C#
28 lines
544 B
C#
namespace Infrastructure.Const
|
|
{
|
|
public enum ResponseType
|
|
{
|
|
ServerError = 1,
|
|
LoginExpiration = 302,
|
|
ParametersLack = 303,
|
|
TokenExpiration,
|
|
PINError,
|
|
NoPermissions,
|
|
NoRolePermissions,
|
|
LoginError,
|
|
AccountLocked,
|
|
LoginSuccess,
|
|
SaveSuccess,
|
|
AuditSuccess,
|
|
OperSuccess,
|
|
RegisterSuccess,
|
|
ModifyPwdSuccess,
|
|
EidtSuccess,
|
|
DelSuccess,
|
|
NoKey,
|
|
NoKeyDel,
|
|
KeyError,
|
|
Other
|
|
}
|
|
}
|