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