using System; using System.Collections.Generic; using System.Text; namespace GxPress.Result.Notice { /// /// 通知点赞数据 /// public class NoticePraisePageResult { /// /// 用户ID /// public int UserId { get; set; } /// /// 用户名称 /// public string UserName { get; set; } /// /// 用户签名 /// public string Signature { get; set; } /// /// 点赞时间 /// public DateTime CreatedDate { get; set; } /// /// 通知名称 /// public string NoticeName { get; set; } /// /// 用户头像 /// public string AvatarUrl { get; set; } /// /// 部门名称 /// public string DepartmentName { get; set; } } }