using System; namespace GxPress.Result.App.Topic { /// /// 通知点赞数据 /// public partial class TopicPraisePageResult { /// /// 用户ID /// public int UserId { get; set; } /// /// 用户名称 /// public string UserName { get; set; } /// /// 用户签名 /// public string Signature { get; set; } /// /// 点赞时间 /// public DateTime CreatedDate { get; set; } /// /// 话题名称 /// public string TopicName { get; set; } /// /// 用户头像 /// public string AvatarUrl { get; set; } /// /// 部门名称 /// public string DepartmentName { get; set; } } }