48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
![]() |
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace VOL.Model.Norm.Response
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 公众号文章详情模型
|
||
|
/// </summary>
|
||
|
public class ArticleDetailsModel
|
||
|
{
|
||
|
[Display(Name = "Id")]
|
||
|
public int Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 文章标题
|
||
|
/// </summary>
|
||
|
[Display(Name = "文章标题")]
|
||
|
public string Title { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 摘要
|
||
|
/// </summary>
|
||
|
[Display(Name = "摘要")]
|
||
|
public string Abstract { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 封面图
|
||
|
/// </summary>
|
||
|
[Display(Name = "封面图")]
|
||
|
public string CoverImage { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 文章地址
|
||
|
/// </summary>
|
||
|
[Display(Name = "文章地址")]
|
||
|
public string ArticleUrl { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 更新时间
|
||
|
/// </summary>
|
||
|
[Display(Name = "更新时间")]
|
||
|
public DateTime UpdateDate { get; set; }
|
||
|
}
|
||
|
}
|