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

12 lines
254 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
{
public string Phone { 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
}
}