12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #region Apache License Version 2.0
- #endregion Apache License Version 2.0
- namespace Senparc.Weixin.MP.AdvancedAPIs.OAuth
- {
-
-
-
- public class OAuthUserInfo
- {
-
-
-
- public string openid { get; set; }
-
-
-
- public string nickname { get; set; }
-
-
-
- public int sex { get; set; }
-
-
-
- public string province { get; set; }
-
-
-
- public string city { get; set; }
-
-
-
- public string country { get; set; }
-
-
-
- public string headimgurl { get; set; }
-
-
-
-
- public string[] privilege { get; set; }
-
-
-
- public string unionid { get; set; }
- }
- }
|