using Newtonsoft.Json;
namespace Vo
{
///
/// 详情
///
public class ApiInfoQueryVo
{
///
/// 分组
///
public int groupId { get; set; }
///
/// 接口名称
///
public string apiName { get; set; }
///
/// 接口关键字
///
public string apiKey { get; set; }
///
/// 接口主机头
///
public string apiHost { get; set; }
///
/// 接口端口号
///
public int apiPort { get; set; }
///
/// 接口路由
///
public string apiRouter { get; set; }
///
/// ID
///
public int id { get; set; }
}
}