using System.Collections.Generic; namespace Learun.Application.WeChat { public class OpenUserGetResult : OperationResultsBase { /// /// 普通用户的标识,对当前开发者帐号唯一 /// /// public string openid { get; set; } /// /// 普通用户昵称 /// /// public string nickname { get; set; } /// /// 普通用户性别,1为男性,2为女性 /// /// public string sex { get; set; } /// /// 省份 /// /// public string province { get; set; } /// /// 城市 /// /// public string city { get; set; } /// /// 国家 /// /// public string country { get; set; } /// /// 头像URL /// /// public string headimgurl { get; set; } /// /// 用户统一标识。针对一个微信开放平台帐号下的应用,同一用户的unionid是唯一的 /// /// public string unionid { get; set; } } }