YD_XinWei.Api/YD_XinWei/WeChat/Lib/WechatUserInfo.cs

24 lines
607 B
C#
Raw Normal View History

2025-01-13 21:06:59 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace YD_XinWei.Api.WeChat.Lib
{
public class WechatUserInfo
{
public string openId { get; set; }
public string phoneNumber { get; set; }
public string nickName { get; set; }
public string avatarUrl { get; set; }
public string unionId { get; set; }
public Watermark watermark { get; set; }
public class Watermark
{
public string appid { get; set; }
public string timestamp { get; set; }
}
}
}