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.
|
|
|
|
using Furion.DependencyInjection;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace Magic.Core;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 点击验证码输入参数
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SuppressSniffer]
|
|
|
|
|
public class ClickWordCaptchaInput
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 验证码类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Required(ErrorMessage = "验证码类型")]
|
|
|
|
|
public string CaptchaType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 坐标点集合
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Required(ErrorMessage = "坐标点集合不能为空")]
|
|
|
|
|
public string PointJson { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Token
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string Token { get; set; }
|
|
|
|
|
}
|