Files
Yi.Framework/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Account/PhoneCaptchaImageDto.cs
2025-07-13 21:26:46 +08:00

14 lines
307 B
C#

namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
{
public class PhoneCaptchaImageDto
{
public string? Phone { get; set; }
public string? Email { get; set; }
public string Uuid { get; set; }
public string Code { get; set; }
}
}