24 lines
607 B
C#
24 lines
607 B
C#
![]() |
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; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|