// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995 // // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证 namespace Admin.NET.Plugin.GoView.Service.Dto; /// /// GoView 新增项目 /// public class GoViewProCreateInput { /// /// 项目名称 /// public string ProjectName { get; set; } /// /// 项目备注 /// public string Remarks { get; set; } /// /// 预览图片url /// public string IndexImage { get; set; } } /// /// GoView 编辑项目 /// public class GoViewProEditInput { /// /// 项目Id /// public long Id { get; set; } /// /// 项目名称 /// public string ProjectName { get; set; } /// /// 预览图片url /// public string IndexImage { get; set; } } /// /// GoView 修改项目发布状态 /// public class GoViewProPublishInput { /// /// 项目Id /// public long Id { get; set; } /// /// 项目状态 /// public GoViewProState State { get; set; } } /// /// GoView 保存项目数据 /// public class GoViewProSaveDataInput { /// /// 项目Id /// public long ProjectId { get; set; } /// /// 项目内容 /// public string Content { get; set; } }