mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-07 02:00:51 +08:00
11 lines
260 B
C#
11 lines
260 B
C#
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
|
|
{
|
|
public class CaptchaImageDto
|
|
{
|
|
public Guid Uuid { get; set; } = Guid.Empty;
|
|
public byte[] Img { get; set; }
|
|
|
|
public bool IsEnableCaptcha { get; set; }
|
|
}
|
|
}
|