using Newtonsoft.Json;
namespace Vo.Admin
{
///
/// 详情
///
public class GetTestNodeQueryVo
{
///
/// ID
///
public int id { get; set; }
///
/// 节点名称
///
public string nodeName { get; set; }
///
/// 节点介绍
///
public string nodeDetail { get; set; }
///
/// 配置模板
///
public string nodeTemplate { get; set; }
///
/// 节点分类
///
public int nodeKind { get; set; }
///
/// 测试配置节点
///
public bool testNodeFlag { get; set; }
}
}