using System; using System.Collections.Generic; using System.Text; namespace JT809.DotNetty.Core.Interfaces { /// /// 校验码生成器 /// public interface IVerifyCodeGenerator { uint Create(); } }