using System.Collections.Generic;
namespace GxPress.Request.App.Topic
{
///
/// 修改话题
///
public class TopicUpdateRequest
{
///
/// 话题ID
///
public int Id { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 内容
///
public string HtmlContent { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 共享文件夹
///
///
public int FolderId { get; set; }
///
/// 话题收件人
///
///
public List TopicAddresseeUserIds { get; set; }
///
///
///
public TopicUpdateRequest()
{
TopicAddresseeUserIds = new List();
}
///
/// 是否草稿
///
///
public bool IsDraft { get; set; }
}
}