using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_WeChatApplet.Commons.Dto.ClientSide
{
///
/// 文章列表
///
public class ArticlesDto
{
public int Id { get; set; }
///
///文章标题
///
public string Title { get; set; }
///
///摘要
///
public string Abstract { get; set; }
///
/// 封面图
///
public string CoverImage { get; set; }
///
///文章地址
///
public string ArticleUrl { get; set; }
///
///更新时间
///
public DateTime UpdateDate { get; set; }
}
}