This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System.ComponentModel;
namespace Common.Enum
{
/// <summary>
/// 密码加密枚举
/// </summary>
[Description("密码加密枚举")]
public enum CryptogramEnum
/// MD5
[Description("MD5")]
MD5 = 0,
/// SM2(国密)
[Description("SM2")]
SM2 = 1,
/// SM4(国密)
[Description("SM4")]
SM4 = 2
}