namespace XiangYi.Application.DTOs.Responses; /// /// 浏览记录响应 /// public class ViewRecordResponse { /// /// 用户ID /// public long UserId { get; set; } /// /// 昵称 /// public string? Nickname { get; set; } /// /// 头像 /// public string? Avatar { get; set; } /// /// 性别 1男 2女 /// public int? Gender { get; set; } /// /// 年龄 /// public int? Age { get; set; } /// /// 出生年份 /// public int? BirthYear { get; set; } /// /// 工作城市 /// public string? WorkCity { get; set; } /// /// 家乡 /// public string? Hometown { get; set; } /// /// 身高 /// public int? Height { get; set; } /// /// 体重 /// public int? Weight { get; set; } /// /// 学历 /// public int? Education { get; set; } /// /// 学历名称 /// public string? EducationName { get; set; } /// /// 职业 /// public string? Occupation { get; set; } /// /// 简介 /// public string? Intro { get; set; } /// /// 是否会员 /// public bool IsMember { get; set; } /// /// 是否实名 /// public bool IsRealName { get; set; } /// /// 是否公开照片 /// public bool IsPhotoPublic { get; set; } /// /// 首张照片 /// public string? FirstPhoto { get; set; } /// /// 浏览次数 /// public int ViewCount { get; set; } /// /// 最后浏览时间 /// public DateTime LastViewTime { get; set; } } /// /// 收藏记录响应 /// public class FavoriteRecordResponse { /// /// 用户ID /// public long UserId { get; set; } /// /// 昵称 /// public string? Nickname { get; set; } /// /// 头像 /// public string? Avatar { get; set; } /// /// 性别 1男 2女 /// public int? Gender { get; set; } /// /// 年龄 /// public int? Age { get; set; } /// /// 出生年份 /// public int? BirthYear { get; set; } /// /// 工作城市 /// public string? WorkCity { get; set; } /// /// 家乡 /// public string? Hometown { get; set; } /// /// 身高 /// public int? Height { get; set; } /// /// 体重 /// public int? Weight { get; set; } /// /// 学历 /// public int? Education { get; set; } /// /// 学历名称 /// public string? EducationName { get; set; } /// /// 职业 /// public string? Occupation { get; set; } /// /// 简介 /// public string? Intro { get; set; } /// /// 是否会员 /// public bool IsMember { get; set; } /// /// 是否实名 /// public bool IsRealName { get; set; } /// /// 是否公开照片 /// public bool IsPhotoPublic { get; set; } /// /// 首张照片 /// public string? FirstPhoto { get; set; } /// /// 收藏时间 /// public DateTime CreateTime { get; set; } } /// /// 解锁响应 /// public class UnlockResponse { /// /// 解锁记录ID /// public long UnlockId { get; set; } /// /// 会话ID /// public long SessionId { get; set; } /// /// 剩余联系次数 /// public int RemainingContactCount { get; set; } } /// /// 解锁记录响应 /// public class UnlockRecordResponse { /// /// 用户ID /// public long UserId { get; set; } /// /// 昵称 /// public string? Nickname { get; set; } /// /// 头像 /// public string? Avatar { get; set; } /// /// 性别 1男 2女 /// public int? Gender { get; set; } /// /// 年龄 /// public int? Age { get; set; } /// /// 出生年份 /// public int? BirthYear { get; set; } /// /// 工作城市 /// public string? WorkCity { get; set; } /// /// 家乡 /// public string? Hometown { get; set; } /// /// 身高 /// public int? Height { get; set; } /// /// 体重 /// public int? Weight { get; set; } /// /// 学历 /// public int? Education { get; set; } /// /// 学历名称 /// public string? EducationName { get; set; } /// /// 职业 /// public string? Occupation { get; set; } /// /// 简介 /// public string? Intro { get; set; } /// /// 是否会员 /// public bool IsMember { get; set; } /// /// 是否实名 /// public bool IsRealName { get; set; } /// /// 是否公开照片 /// public bool IsPhotoPublic { get; set; } /// /// 首张照片 /// public string? FirstPhoto { get; set; } /// /// 解锁时间 /// public DateTime CreateTime { get; set; } }