2025-04-21 14:10:27 +08:00

22 lines
432 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
/// <summary>
/// 发送验证码类型
/// </summary>
public enum SendCodeType
{
/// <summary>
/// 验证码
/// </summary>
[Description("验证码")]
Code = 1
}
}