Files
Yi.Framework/Yi.Furion.Net6/Yi.Furion.Application/Rbac/Dtos/Account/CaptchaImageDto.cs
2023-04-15 17:35:22 +08:00

16 lines
369 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Furion.Application.Rbac.Dtos.Account
{
public class CaptchaImageDto
{
public string Code { get; set; } = string.Empty;
public Guid Uuid { get; set; } = Guid.Empty;
public byte[] Img { get; set; }
}
}