namespace HtmlToPdfService.Core.Options; /// /// 存储配置选项 /// public class StorageOptions { /// /// 是否保存本地副本 /// public bool SaveLocalCopy { get; set; } = true; /// /// 本地存储路径 /// public string LocalPath { get; set; } = "/app/pdfs"; /// /// 文件保留时间(小时) /// public int RetentionHours { get; set; } = 24; /// /// 自动清理过期文件 /// public bool AutoCleanup { get; set; } = true; /// /// 清理检查间隔(秒) /// public int CleanupInterval { get; set; } = 3600; }