nsnail a4e63c971d
refactor: ♻️ projectUsings (#182)
Co-authored-by: tk <fiyne1a@dingtalk.com>
2024-10-30 15:27:25 +08:00

14 lines
374 B
C#

using NetAdmin.Domain.Dto.Sys.VerifyCode;
namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency;
/// <summary>
/// 验证码服务
/// </summary>
public interface IVerifyCodeService : IService, IVerifyCodeModule
{
/// <summary>
/// 设置验证码状态
/// </summary>
Task<int> SetVerifyCodeStatusAsync(SetVerifyCodeStatusReq req);
}