using Microsoft.AspNetCore.Mvc; namespace Admin.NET.Application { /// /// /// public interface IAuthService { /// /// /// /// Task GetCaptcha(); /// /// /// /// Task GetCaptchaOpen(); /// /// /// /// Task GetLoginUserAsync(); /// /// /// /// /// string LoginAsync([FromBody] LoginInput input); /// /// /// /// Task LogoutAsync(); /// /// /// /// /// Task VerificationCode(ClickWordCaptchaInput input); } }