namespace StellaOps.Evidence.Bundle;
///
/// Section-level diff entry.
///
public sealed class BinarySectionDiff
{
///
/// Diff operation type.
///
public required BinaryDiffOperation Operation { get; init; }
///
/// Section name.
///
public required string SectionName { get; init; }
///
/// Previous section size.
///
public long? PreviousSize { get; init; }
///
/// Current section size.
///
public long? CurrentSize { get; init; }
///
/// Size delta.
///
public long? SizeDelta { get; init; }
///
/// Section permissions/flags.
///
public string? Permissions { get; init; }
}