using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing; namespace sharpknife.Captchas { public class NumbersCaptcha : Captcha { // Default values for No-Minimum // Change values for DonkeyMails public override float Contrast { get { return 0.79f; } } public override void Clean(Bitmap image) { throw new NotImplementedException(); } public override string Decaptcha(Bitmap image) { throw new NotImplementedException(); } } }