2025-04-21 14:10:27 +08:00

50 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.Wechat
{
public class WXUserInfoResp
{
/// <summary>用户的唯一标识</summary>
public string OpenId { get; set; }
/// <summary>
/// UnionId
/// </summary>
public string UnionId { get; set; }
/// <summary>用户昵称</summary>
public string NickName { get; set; }
/// <summary>用户的性别值为1时是男性值为2时是女性值为0时是未知</summary>
public int Sex { get; set; }
/// <summary>用户个人资料填写的省份</summary>
public string Province { get; set; }
/// <summary>普通用户个人资料填写的城市</summary>
public string City { get; set; }
/// <summary>国家如中国为CN</summary>
public string Country { get; set; }
/// <summary>
/// 用户头像最后一个数值代表正方形头像大小有0、46、64、96、132数值可选0代表640*640正方形头像用户没有头像时该项为空
/// </summary>
public string HeadImgUrl { get; set; }
/// <summary>
/// 1:关注 0没有关注
/// </summary>
public int Subscribe { get; set; }
/// <summary>
/// 关注时间
/// </summary>
public DateTime? SubscribeTime { get; set; }
}
}