You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
416 B
C#

using System.ComponentModel;
namespace NPin.Framework.Upms.Domain.Shared.Enums;
/// <summary>
/// 短信提供商枚举
/// </summary>
public enum SmsProviderEnum
{
Aliyun,
Tencent
}
/// <summary>
/// 短信类型枚举
/// </summary>
public enum SmsTypeEnum
{
[Description("登录")] Login,
[Description("注册")] Register,
[Description("找回密码(重置密码)")] ResetPassword,
}