2024-10-22 09:28:58 +08:00

20 lines
450 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace JiShe.CollectBus.Common.Enums
{
public enum MaskTypeEnum
{
/// <summary>
/// Masks all characters within the masking region, regardless of type.
/// </summary>
All,
/// <summary>
/// Masks only alphabetic and numeric characters within the masking region.
/// </summary>
AlphaNumericOnly,
}
}