Files
SharepointToolbox-Web/Core/Models/VersionCleanupOptions.cs
T
2026-06-02 10:56:03 +02:00

10 lines
255 B
C#

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