using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons.Dto
{
///
/// 个人信息
///
public class PersonalInfoDto
{
///
///性别
///
public int? Gender { get; set; }
///
///头像
///
public string? HeadImageUrl { get; set; }
///
///姓名
///
public string? UserTrueName { get; set; }
///
///出生日期
///
public string BirthDate { get; set; }
///
/// 身高
///
public float? Height { get; set; }
///
/// 体重
///
public float? Weight { get; set; }
}
}