using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiWorkbenchShortcutGetguideuriResponse.
///
public class OapiWorkbenchShortcutGetguideuriResponse : DingTalkResponse
{
///
/// 服务返回码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 服务返回信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 快捷方式添加到工作台引导页地址
///
[XmlElement("guide_uri")]
public string GuideUri { get; set; }
}
}