9 lines
202 B
C#
9 lines
202 B
C#
namespace AudibleApiDomainService
|
|
{
|
|
public interface IAudibleApiResponder
|
|
{
|
|
(string email, string password) GetLogin();
|
|
string GetCaptchaAnswer(byte[] captchaImage);
|
|
string Get2faCode();
|
|
}
|
|
} |