forked from BeyondDimension/SteamTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmsCodeType.cs
More file actions
43 lines (37 loc) · 1.03 KB
/
SmsCodeType.cs
File metadata and controls
43 lines (37 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
namespace System.Application
{
/// <summary>
/// 短信验证码类型
/// </summary>
public enum SmsCodeType
{
/// <summary>
/// [通过手机号码注册账号]用于注册
/// </summary>
Register = 200,
/// <summary>
/// [通过手机号码重设密码]找回密码
/// </summary>
ForgotPassword = 201,
/// <summary>
/// [换新手机号要旧手机号短信验证]绑定新手机号
/// </summary>
ChangePhoneNumberNew = 202,
/// <summary>
/// [新手机号的短信验证]换绑手机(安全验证)
/// </summary>
ChangePhoneNumberValidation = 203,
/// <summary>
/// [通过手机号码]登录或注册
/// </summary>
LoginOrRegister = 204,
/// <summary>
/// [通过手机号码]登录
/// </summary>
Login = 205,
/// <summary>
/// 绑定手机号码
/// </summary>
BindPhoneNumber = 206,
}
}