namespace HoneyBox.Model.Models.Auth;
///
/// 微信授权绑定手机号请求
///
public class BindMobileRequest
{
///
/// 微信授权code
///
public string Code { get; set; } = string.Empty;
}
///
/// 验证码绑定手机号请求
///
public class BindMobileWithCodeRequest
{
///
/// 手机号
///
public string Mobile { get; set; } = string.Empty;
///
/// 短信验证码
///
public string Code { get; set; } = string.Empty;
}
///
/// H5绑定手机号请求(无需验证码)
///
public class BindMobileH5Request
{
///
/// 手机号
///
public string Mobile { get; set; } = string.Empty;
}