using System;
using System.Collections.Generic;
using GxPress.Common.Page;
using GxPress.Result.App.Analyze;
namespace GxPress.Request.App.WorkMeeting
{
///
///
///
public class MeetingSummaryResult
{
public int Id { get; set; }
///
/// 用户Id
///
public int UserId { get; set; }
///
/// 用户名
///
public string UserName { get; set; }
///
/// 会议Id
///
public int MeetingId { get; set; }
///
/// 会议名称
///
public string MeetingName { get; set; }
///
/// 会议地址
///
public string Address { get; set; }
///
/// 发送范围
///
public IEnumerable UserIds { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// 正文
///
public string Content { get; set; }
///
/// 时间
///
public DateTime? CreatedDate { get; set; }
///
/// 会议时间
///
///
public List MeetingTimes { get; set; }
///
/// 新版收件人
///
///
public IEnumerable AddresseeUserMiddles { get; set; }
///
/// 是否收藏
///
public bool IsCollect { get; set; }
///
/// 是否转发
///
public bool IsRetransmission { get; set; }
///
/// 是否点赞
///
public bool IsPraise { get; set; }
///
/// 评论数量
///
public int CommentCount { get; set; }
///
/// 收藏数量
///
public int CollectCount { get; set; }
///
/// 转发数量
///
public int RetransmissionCount { get; set; }
///
/// 点赞数量
///
public int PraiseCount { get; set; }
///
/// 点赞数据
///
public PagedList PraisePagedList { get; set; }
///
/// 是否是自己创建
///
///
public bool IsAdmin { get; set; }
}
}