namespace HtmlToPdfService.Core.Options;
///
/// 回调配置选项
///
public class CallbackOptions
{
///
/// 是否启用回调
///
public bool Enabled { get; set; } = true;
///
/// 默认回调 URL
///
public string? DefaultUrl { get; set; }
///
/// 回调超时时间(毫秒)
///
public int Timeout { get; set; } = 30000;
///
/// 是否在回调中包含 PDF Base64 数据
///
public bool IncludePdfData { get; set; } = false;
///
/// 自定义 HTTP Headers
///
public Dictionary CustomHeaders { get; set; } = new();
}