// 此源代码遵循位于源代码树根目录中的 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; }
}