using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// ZhimaAuthInfoAuthqueryResponse. /// public class ZhimaAuthInfoAuthqueryResponse : AopResponse { /// /// 是否已经授权; authorized=true 表示已授权, authorized=false表示未授权 /// [XmlElement("authorized")] public bool Authorized { get; set; } /// /// 当前授权业务查询标识 /// [XmlElement("open_id")] public string OpenId { get; set; } } }