namespace Yi.Framework.AiHub.Application.Contracts.Dtos.Announcement; /// /// 公告缓存 DTO /// public class AnnouncementCacheDto { /// /// 版本号 /// public string Version { get; set; } = string.Empty; /// /// 公告日志列表 /// public List Logs { get; set; } = new List(); /// /// 跳转链接 /// public string? Url { get; set; } }