using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ChouBox.Code.Contract; /// /// 发送验证码 /// public interface ISendVerificationCode { /// /// 发送验证码 /// /// /// /// public Task SendVerificationCode(string code, int expireTime); }