123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Vinno.vCloud.Client.Proxy.Interfaces
- {
- public class WechatUserInfo
- {
- public string Openid { get; set; }
- public string PhoneNumber { get; set; }
- public string NickName { get; set; }
- public string Hospital { get; set; }
- public string UserId { get; set; }
- }
- }
|