using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Request.Admin.Article
{
///
/// 文章克隆
///
public class CloneArticleRequest
{
///
/// 文章ID
///
public int ArticleId { get; set; }
///
/// 文章标题
///
public string ArticleTitle { get; set; }
}
}