mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-05 04:22:51 +08:00
14 lines
374 B
C#
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);
|
|
} |