增加下载微信公众号文章功能
This commit is contained in:
55
20220330_Vote/Vote.Services/Entities/Article.cs
Normal file
55
20220330_Vote/Vote.Services/Entities/Article.cs
Normal file
@@ -0,0 +1,55 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Vote.Services.Entities
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public class Article
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public string Id { get; set; }
|
||||
/// <summary>
|
||||
/// 标题
|
||||
/// </summary>
|
||||
public string Title { get; set; }
|
||||
/// <summary>
|
||||
/// 概要
|
||||
/// </summary>
|
||||
public string Summary { get; set; }
|
||||
/// <summary>
|
||||
/// 文章链接
|
||||
/// </summary>
|
||||
public string Url { get; set; }
|
||||
/// <summary>
|
||||
/// 推荐数
|
||||
/// </summary>
|
||||
public long Diggit { get; set; }
|
||||
/// <summary>
|
||||
/// 评论数
|
||||
/// </summary>
|
||||
public long Comment { get; set; }
|
||||
/// <summary>
|
||||
/// 阅读数
|
||||
/// </summary>
|
||||
public long View { get; set; }
|
||||
/// <summary>
|
||||
///明细
|
||||
/// </summary>
|
||||
public string Detail { get; set; }
|
||||
/// <summary>
|
||||
///作者
|
||||
/// </summary>
|
||||
public string Author { get; set; }
|
||||
/// <summary>
|
||||
/// 作者链接
|
||||
/// </summary>
|
||||
public string AuthorUrl { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user