Files
Yi.Admin/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Account/PhoneCaptchaImageDto.cs

14 lines
307 B
C#
Raw Normal View History

2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
{
public class PhoneCaptchaImageDto
{
2025-07-13 21:26:46 +08:00
public string? Phone { get; set; }
public string? Email { get; set; }
2024-10-21 10:39:16 +08:00
2024-10-21 23:07:44 +08:00
public string Uuid { get; set; }
2024-10-21 10:39:16 +08:00
2024-10-21 23:07:44 +08:00
public string Code { get; set; }
2023-12-11 09:55:12 +08:00
}
}