namespace Yi.Framework.DigitalCollectibles.Application.Contracts.Dtos.Account;
public class BindInput
{
public string JsCode { get; set; }
public long Phone { get; set; }
///
/// 唯一标识码
///
public string? Uuid { get; set; }
///
/// 验证码
///
public string? Code { get; set; }
}