Files
juipnet/Services/Hncore.Pass.BaseInfo/Request/User/WxAuthUserInfo.cs
“wanyongkang” b562aba2b1 忽略dll文件git
2023-07-29 10:19:42 +08:00

45 lines
1.4 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.Threading.Tasks;
namespace Hncore.Pass.BaseInfo.Request.User
{
public class WxAuthUserInfo
{
//
// 摘要:
// 用户的唯一标识
public string openid { get; set; }
//
// 摘要:
// 用户昵称
public string nickname { get; set; }
//
// 摘要:
// 用户的性别值为1时是男性值为2时是女性值为0时是未知
public int sex { get; set; }
//
// 摘要:
// 用户个人资料填写的省份
public string province { get; set; }
//
// 摘要:
// 普通用户个人资料填写的城市
public string city { get; set; }
//
// 摘要:
// 国家如中国为CN
public string country { get; set; }
//
// 摘要:
// 用户头像最后一个数值代表正方形头像大小有0、46、64、96、132数值可选0代表640*640正方形头像用户没有头像时该项为空
public string headimgurl { get; set; }
//
// 摘要:
// 用户特权信息json 数组如微信沃卡用户为chinaunicom 作者注其实这个格式称不上JSON只是个单纯数组。
public string[] privilege { get; set; }
public string unionid { get; set; }
}
}