You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
418 B
17 lines
418 B
4 years ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace CK.SCP.Models.Enums
|
||
|
{
|
||
|
public enum LoginState
|
||
|
{
|
||
|
[Description("登录失败,未知原因")]
|
||
|
Fault = 0,
|
||
|
[Description("登录成功")]
|
||
|
OK = 1,
|
||
|
[Description("错误的用户名或密码,登录失败!")]
|
||
|
BadCode = 2,
|
||
|
[Description("登录失败,尝试次数太多。稍后再试。")]
|
||
|
Itm = 3,
|
||
|
}
|
||
|
}
|