Files
Yi.Framework/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Account/PhoneCaptchaImageDto.cs
2024-10-21 23:07:44 +08:00

12 lines
254 B
C#

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