44 lines
977 B
C#
Raw Normal View History

2025-06-06 14:57:20 +08:00
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
{
/// <summary>
/// 文章列表
/// </summary>
public class ArticlesDto
{
public int Id { get; set; }
/// <summary>
///文章标题
/// </summary>
public string Title { get; set; }
/// <summary>
///摘要
/// </summary>
public string Abstract { get; set; }
/// <summary>
/// 封面图
/// </summary>
public string CoverImage { get; set; }
/// <summary>
///文章地址
/// </summary>
public string ArticleUrl { get; set; }
/// <summary>
///更新时间
/// </summary>
public DateTime UpdateDate { get; set; }
}
}