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
591 B
C#

11 months ago
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace Admin.Core.Common
{
/// <summary>
/// 验证码
/// </summary>
public class CaptchaResult
{
/// <summary>
/// CaptchaCode
/// </summary>
public string CaptchaCode { get; set; }
/// <summary>
/// CaptchaMemoryStream
/// </summary>
public MemoryStream CaptchaMemoryStream { get; set; }
/// <summary>
/// Timestamp
/// </summary>
public DateTime Timestamp { get; set; }
}
}