using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiCallBackRegisterCallBackResponse.
///
public class OapiCallBackRegisterCallBackResponse : DingTalkResponse
{
///
/// 返回码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 对返回码的文本描述内容
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
}
}