You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
using static SKIT.FlurlHttpClient.Wechat.Work.Models.CgibinWedocModifyDocumentSafeSettingRequest.Types;
|
|
|
|
namespace Ds.Module.WeChat.Models
|
|
{
|
|
public class WeChatUserInfo
|
|
{
|
|
public string openId { get; set; }
|
|
|
|
public string nickName { get; set; }
|
|
|
|
public int gender { get; set; }
|
|
|
|
public string city { get; set; }
|
|
|
|
public string province { get; set; }
|
|
|
|
public string country { get; set; }
|
|
|
|
public string avatarUrl { get; set; }
|
|
|
|
public string unionId { get; set; }
|
|
|
|
public Watermark watermark { get; set; }
|
|
}
|
|
|
|
[Serializable]
|
|
public class DecodeEntityBase
|
|
{
|
|
public Watermark watermark { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 解码后的用户信息
|
|
/// </summary>
|
|
[Serializable]
|
|
public class DecodedUserInfo : DecodeEntityBase
|
|
{
|
|
public string openId { get; set; }
|
|
public string nickName { get; set; }
|
|
public int gender { get; set; }
|
|
public string city { get; set; }
|
|
public string province { get; set; }
|
|
public string country { get; set; }
|
|
public string avatarUrl { get; set; }
|
|
public string unionId { get; set; }
|
|
}
|
|
} |