namespace Admin.NET.Application { /// /// 验证码输出参数 /// public class ClickWordCaptchaResult { /// /// /// public string RepCode { get; set; } = "0000"; /// /// /// public string RepMsg { get; set; } /// /// /// public RepData RepData { get; set; } = new RepData(); /// /// /// public bool Error { get; set; } /// /// /// public bool Success { get; set; } = true; } /// /// /// public class RepData { /// /// /// public string CaptchaId { get; set; } /// /// /// public string ProjectCode { get; set; } /// /// /// public string CaptchaType { get; set; } /// /// /// public string CaptchaOriginalPath { get; set; } /// /// /// public string CaptchaFontType { get; set; } /// /// /// public string CaptchaFontSize { get; set; } /// /// /// public string SecretKey { get; set; } /// /// /// public string OriginalImageBase64 { get; set; } /// /// /// public List Point { get; set; } = new List(); /// /// /// public string JigsawImageBase64 { get; set; } /// /// /// public List WordList { get; set; } = new List(); /// /// /// public string PointList { get; set; } /// /// /// public string PointJson { get; set; } /// /// /// public string Token { get; set; } /// /// /// public bool Result { get; set; } /// /// /// public string CaptchaVerification { get; set; } } }