You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
507 B
C#
18 lines
507 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Core.Service;
|
|
|
|
public interface IAuthService
|
|
{
|
|
Task<dynamic> GetCaptcha();
|
|
Task<bool> GetCaptchaOpen();
|
|
Task<LoginOutput> GetLoginUserAsync();
|
|
Task<string> LoginAsync([Required] LoginInput input);
|
|
Task LogoutAsync();
|
|
Task<dynamic> VerificationCode(ClickWordCaptchaInput input);
|
|
|
|
Task<string> SimulationLoginAsync([Required] LoginInput input);
|
|
}
|