using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiWorkspaceProjectAssistantSendResponse. /// public class OapiWorkspaceProjectAssistantSendResponse : DingTalkResponse { /// /// errorcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errmsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// errorcode /// [XmlElement("msgCode")] public string MsgCode { get; set; } /// /// errmsg /// [XmlElement("msgInfo")] public string MsgInfo { get; set; } /// /// 是否成功 /// [XmlElement("success")] public bool Success { get; set; } } }