using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiEduCourseBatchcreateResponse. /// public class OapiEduCourseBatchcreateResponse : DingTalkResponse { /// /// dingOpenErrcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errorMsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 课程编码集合 /// [XmlArray("result")] [XmlArrayItem("string")] public List Result { get; set; } /// /// 请求是否成功 /// [XmlElement("success")] public bool Success { get; set; } } }