WechatUserInfo.cs 396 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Vinno.vCloud.Client.Proxy.Interfaces
  5. {
  6. public class WechatUserInfo
  7. {
  8. public string Openid { get; set; }
  9. public string PhoneNumber { get; set; }
  10. public string NickName { get; set; }
  11. public string Hospital { get; set; }
  12. public string UserId { get; set; }
  13. }
  14. }