using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Vote.Services.Entities
{
///
///
///
public class Article
{
///
///
///
public string Id { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// 概要
///
public string Summary { get; set; }
///
/// 文章链接
///
public string Url { get; set; }
///
/// 推荐数
///
public long Diggit { get; set; }
///
/// 评论数
///
public long Comment { get; set; }
///
/// 阅读数
///
public long View { get; set; }
///
///明细
///
public string Detail { get; set; }
///
///作者
///
public string Author { get; set; }
///
/// 作者链接
///
public string AuthorUrl { get; set; }
}
}