ZhiYi/ZhiYi.Core.Application/Services/ICaptchaAppService.cs

12 lines
258 B
C#

namespace ZhiYi.Core.Application.Services
{
public interface ICaptchaAppService
{
/// <summary>
/// 获取验证码
/// </summary>
/// <returns></returns>
Task<CaptchaResponseDto> GetCaptchaAsync();
}
}