Files
RhythmicWallpaper/AudioVisualizer/SSO/AuthStatus.cs

19 lines
652 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AudioWallpaper.SSO {
public enum AuthStatus : int {
Unknown = 0x0000,//未知,一般是没有登录或程序刚启动
InProgress = 0x0001,//正在进行中,表示正在进行登录操作
Success = 0x0002,//登录成功
Cancelled = 0x0003,//用户取消登录
Failed = 0x0004,//登录失败
Timeout = 0x0005,//登录超时
LockedOut = 0x0006,//用户被锁定
RequiresVerify = 0x0007,//需要验证
LoginOut = 0x0100,//已经退出登录
}
}