23 lines
496 B
C#
23 lines
496 B
C#
namespace Yi.Framework.AiHub.Application.Contracts.Dtos.Announcement;
|
|
|
|
/// <summary>
|
|
/// 公告日志 DTO
|
|
/// </summary>
|
|
public class AnnouncementLogDto
|
|
{
|
|
/// <summary>
|
|
/// 日期
|
|
/// </summary>
|
|
public string Date { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 标题
|
|
/// </summary>
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 内容列表
|
|
/// </summary>
|
|
public List<string> Content { get; set; } = new List<string>();
|
|
}
|