mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-12 04:29:28 +08:00
9 lines
208 B
C#
9 lines
208 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; }
|
|
}
|
|
}
|