using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiHireNavigationGetResponse. /// public class OapiHireNavigationGetResponse : DingTalkResponse { /// /// 错误码,0表示成功 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 导航栏数据的json字符串 /// [XmlElement("result")] public string Result { get; set; } } }