using System;
using System.Collections.Generic;
using GxPress.EnumConst;
namespace GxPress.Result.Notice
{
///
/// 编辑通知详情
///
public class NoticeEditDetailResult
{
///
///
///
public int Id { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 内容
///
public string HtmlContent { get; set; }
///
/// 用户名
///
public string UserName { get; set; }
///
/// 类型 (1 发送 2 草稿)
///
public NoticeTypeConst NoticeType { get; set; }
///
/// 收件人
///
public List NoticeAddresseeUsers { get; set; }
///
/// 抄送人
///
public List NoticeCcUsers { get; set; }
///
/// Json内容数据
///
///
public List Data { get; set; }
///
/// 新版收件人
///
///
public IEnumerable AddresseeUserMiddles { get; set; }
///
/// 新版抄送人
///
///
public IEnumerable CcUserMiddles { get; set; }
///
/// 创建时间
///
///
public DateTime? CreatedDate { get; set; }
///
/// 修改时间
///
///
public DateTime? LastModifiedDate { get; set; }
}
///
/// 收件人
///
public class NoticeAddresseeUser
{
///
/// 用户ID
///
///
public int Id { get; set; }
///
/// 用户姓名
///
///
public string Name { get; set; }
///
/// 用户头像
///
///
public string AvatarUrl { get; set; }
}
///
/// 抄送人
///
public class NoticeCcUser
{
///
/// 用户ID
///
///
public int Id { get; set; }
///
/// 用户姓名
///
///
public string Name { get; set; }
///
/// 用户头像
///
///
public string AvatarUrl { get; set; }
}
}