using System;
using System.Collections.Generic;
using System.Text;
using GxPress.EnumConst;
namespace GxPress.Request.Notice
{
///
/// 编辑通知
///
public class NoticeUpRequest
{
///
/// 通知ID
///
public int Id { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 内容
///
public string HtmlContent { get; set; }
///
/// 类型 (1 发送 2 草稿)
///
public NoticeTypeConst NoticeType { get; set; }
///
/// 来源Id
///
///
public int SourceId { get; set; }
///
/// 收件人
///
public List NoticeAddresseeUserIds { get; set; }
///
/// 抄送人
///
public List NoticeCcUserIds { get; set; }
///
/// 用户ID
///
///
public int UserId { get; set; }
///
/// 新版收件人
///
///
public List AddresseeUserMiddles { get; set; }
///
/// 新版抄送人
///
///
public List CcUserMiddles { get; set; }
///
///
///
public NoticeUpRequest()
{
NoticeAddresseeUserIds = new List();
AddresseeUserMiddles = new List();
CcUserMiddles = new List();
NoticeCcUserIds = new List();
}
}
}