namespace Yi.Framework.AiHub.Application.Contracts.Dtos.Announcement;
///
/// 公告输出 DTO
///
public class AnnouncementOutput
{
///
/// 版本号
///
public string Version { get; set; } = string.Empty;
///
/// 公告日志列表
///
public List Logs { get; set; } = new List();
}