namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account;
public class RetrievePasswordDto
{
///
/// 密码
///
public string Password { get; set; }
///
/// 唯一标识码
///
public string? Uuid { get; set; }
///
/// 电话
///
public long Phone { get; set; }
///
/// 验证码
///
public string? Code { get; set; }
}