namespace SharepointToolbox.Core.Models; public record VersionCleanupOptions( IReadOnlyList LibraryTitles, int KeepLast, bool KeepFirst) { public static VersionCleanupOptions Default => new(Array.Empty(), 5, false); }