ZhiYi/ZhiYi.Core.Application/Dtos/CaptchaResponseDto.cs

24 lines
503 B
C#
Raw Normal View History

2025-02-21 01:14:39 +00:00
namespace ZhiYi.Core.Application.Dtos
{
/// <summary>
/// 验证码响应定义
/// </summary>
public class CaptchaResponseDto
{
/// <summary>
/// 验证码图片
/// </summary>
public byte[] File { get; set; }
/// <summary>
/// 验证码ID
/// </summary>
public string CaptchaId { get; set; }
/// <summary>
/// 验证码
/// </summary>
public string Captcha { get; set; }
}
}