using Newtonsoft.Json;
namespace Vo.Admin
{
///
/// 详情
///
public class GetMakeTemplateQueryVo
{
///
/// ID
///
public int id { get; set; }
///
/// 分类ID
///
public int gategoryId { get; set; }
///
/// 模板名称
///
public string templateName { get; set; }
///
/// 模板介绍
///
public string templateDetail { get; set; }
///
/// 模板内容
///
public string templateContent { get; set; }
}
}