DigitalFactory/Admin.NET/Plugins/Admin.NET.Plugin.GoView/Service/GoViewPro/Dto/GoViewProInput.cs

79 lines
1.6 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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