public sealed record PeAnalysisOptions
{
public bool EnableCaching { get; init; } = true;
public int CacheSizeLimitMb { get; init; } = 100;
public TimeSpan CacheTtl { get; init; } = TimeSpan.FromMinutes(30);
public SafetyLimits SafetyLimits { get; init; } = new();
public int EntryPointInstructionCount { get; init; } = 16;
}