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