using System.Collections.Generic;
using GxPress.EnumConst;
namespace GxPress.Request.App.Topic
{
///
/// 话题
///
public class TopicInRequest
{
///
///标题
///
public string Title { get; set; }
///
/// 用户
///
public int UserId { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 内容
///
public string HtmlContent { get; set; }
///
/// 阅读量
///
public int ReadCount { get; set; }
///
/// 收件人
///
public List TopicAddresseeUserIds { get; set; }
///
///小组ID
///
public int GroupId { get; set; }
///
/// 来源类型
///
public SourceTypeConst SourceType { get; set; }
///
/// 来源ID
///
public int SourceId { get; set; }
///
/// 文件夹Id
///
public int FolderId { get; set; }
///
///
///
public TopicInRequest()
{
TopicAddresseeUserIds = new List();
}
///
/// 是否草稿
///
///
public bool IsDraft { get; set; }
}
}