24 lines
610 B
C#
Raw Permalink Normal View History

2025-06-06 14:57:20 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace YD_WeChatApplet.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; }
}
}
}