public ApiCaptchaAnswer(ApiCaptchaQuestion captchaQuestion, string response) { this.CaptchaQuestion = captchaQuestion; this.UserResponse = response; }
public ApiCaptchaRequiredException(ApiCaptchaQuestion captchaQuestion) : base(string.Format("API method call replied with \"need_captcha\".")) { this.CaptchaQuestion = captchaQuestion; }