using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Threading.Tasks; namespace Myshipping.Core.Service; public interface IAuthService { Task GetCaptcha(); Task GetCaptchaOpen(); Task GetLoginUserAsync(); Task LoginAsync([Required] LoginInput input); Task LogoutAsync(); Task VerificationCode(ClickWordCaptchaInput input); Task SimulationLoginAsync([Required] LoginInput input); }