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.
29 lines
632 B
C#
29 lines
632 B
C#
using Furion.DependencyInjection;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Myshipping.Core;
|
|
|
|
/// <summary>
|
|
/// 常规验证码输入
|
|
/// </summary>
|
|
[SuppressSniffer]
|
|
public class GeneralCaptchaInput
|
|
{
|
|
/// <summary>
|
|
/// 验证码类型
|
|
/// </summary>
|
|
[Required(ErrorMessage = "验证码类型")]
|
|
public string CaptchaType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 验证码字符
|
|
/// </summary>
|
|
[Required(ErrorMessage = "验证码字符不能为空")]
|
|
public string CaptchaCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Token
|
|
/// </summary>
|
|
public string Token { get; set; }
|
|
}
|