You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
585 B
26 lines
585 B
using System;
|
|
using System.IO;
|
|
|
|
namespace Znyc.Admin.Commons.VerificationCode
|
|
{
|
|
/// <summary>
|
|
/// 验证码返回结果
|
|
/// </summary>
|
|
public class CaptchaResult
|
|
{
|
|
/// <summary>
|
|
/// 验证码字符串
|
|
/// </summary>
|
|
public string CaptchaCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 验证码内存流
|
|
/// </summary>
|
|
public MemoryStream CaptchaMemoryStream { get; set; }
|
|
|
|
/// <summary>
|
|
/// 验证码生成时间
|
|
/// </summary>
|
|
public DateTime Timestamp { get; set; }
|
|
}
|
|
}
|