using System;
using System.Collections.Generic;
using GxPress.Entity;
using GxPress.Entity.Article;
namespace GxPress.Request.Article
{
///
/// 修改文章
///
public class ArticleEditRequest
{
///
/// Id
///
public int Id { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// 组id
///
public int GroupId { get; set; }
///
/// 标题图片
///
public IEnumerable ImageUrls { get; set; }
///
/// 简介
///
public string Summary { get; set; }
///
/// 作者
///
public string Author { get; set; }
///
/// 来源
///
public string Source { get; set; }
///
/// Json内容
///
public IEnumerable Blocks { get; set; }
///
/// 新版Json内容
///
public ArticleContent ArticleContent { get; set; }
///
/// 审核状态
///
public bool IsChecked { get; set; }
///
/// 添加时间
///
public DateTime AddDate { get; set; }
///
/// 排序
///
public int Sort { get; set; }
///
/// 是否置顶
///
public bool IsTop { get; set; }
///
/// 文章标签
///
///
public List ArticleLabelIds { get; set; }
}
}