namespace GxPress.Result.Notice
{
///
/// 通知阅读信息
///
public class NoticeReadListResult
{
///
/// 通知ID
///
public int NoticeId { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 用户头像
///
public string AvatarUrl { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 部门名称
///
public string DepartmentName { get; set; }
///
/// 时间
///
///
public string LastModifiedDate{get;set;}
}
}