using System;
using GxPress.Result.App.Middle;
namespace GxPress.Result.Notice
{
///
/// App通知列表显示
///
public class NoticeListPageResult : Middle
{
///
/// 通知自增ID
///
public int Id { get; set; }
///
/// 通知标题
///
public string Title { get; set; }
///
/// 用户姓名
///
public string UserName { get; set; }
///
/// 内容
///
///
public string Content { get; set; }
///
/// 头像地址
///
public string AvatarUrl { get; set; }
///
/// 创建时间
///
public DateTime? CreatedDate { get; set; }
///
/// 收件人数量
///
public int AllCount { get; set; }
///
/// 是否阅读
///
///
public bool IsRead { get; set; }
///
/// 阅读量
///
public int ReadCount { get; set; }
///
/// 未读阅读量
///
public int UReadCount { get; set; }
///
///
///
public int NoticeAddresseeId { get; set; }
///
///
///
public int NoticeId { get; set; }
///
/// 文件数量
///
public int FileCount { get; set; }
///
/// 是否收藏
///
public bool IsCollection { get; set; }
///
/// 是否点赞
///
public bool IsLaud { get; set; }
///
/// 是否转发
///
public bool IsRetransmission { get; set; }
///
/// 评论数量
///
public int CommentCount { get; set; }
///
/// 收藏数量
///
public int CollectCount { get; set; }
///
/// 转发数量
///
public int RetransmissionCount { get; set; }
///
/// 点赞数量
///
public int PraiseCount { get; set; }
///
/// 通知状态 0 删除 1 正常 2 草稿
///
///
public int NoticeStatus { get; set; }
///
/// 关联通知Id
///
///
public int SourceId { get; set; }
}
}