using System;
namespace GxPress.Result.App.Missive
{
///
/// 站内信已读未读
///
public class MissiveReadListResult
{
///
/// 通知ID
///
public int MissiveId { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 用户头像
///
public string AvatarUrl { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 部门名称
///
public string DepartmentName { get; set; }
///
/// 时间
///
///
public DateTime LastModifiedDate{get;set;}
}
}