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.
32 lines
1.2 KiB
32 lines
1.2 KiB
namespace Sanhe.Abp.Identity.Settings |
|
{ |
|
public static class IdentitySettingNames |
|
{ |
|
private const string Prefix = "Abp.Identity"; |
|
|
|
public static class User |
|
{ |
|
private const string UserPrefix = Prefix + ".User"; |
|
/// <summary> |
|
/// 用户手机验证短信模板 |
|
/// </summary> |
|
public const string SmsPhoneNumberConfirmed = UserPrefix + ".SmsPhoneNumberConfirmed"; |
|
/// <summary> |
|
/// 用户注册短信验证码模板号 |
|
/// </summary> |
|
public const string SmsNewUserRegister = UserPrefix + ".SmsNewUserRegister"; |
|
/// <summary> |
|
/// 用户登录短信验证码模板号 |
|
/// </summary> |
|
public const string SmsUserSignin = UserPrefix + ".SmsUserSignin"; |
|
/// <summary> |
|
/// 用户重置密码短信验证码模板号 |
|
/// </summary> |
|
public const string SmsResetPassword = UserPrefix + ".SmsResetPassword"; |
|
/// <summary> |
|
/// 验证码重复间隔时间 |
|
/// </summary> |
|
public const string SmsRepeatInterval = UserPrefix + ".SmsRepeatInterval"; |
|
} |
|
} |
|
}
|
|
|