Files
Sharepoint-Toolbox/SharepointToolbox/Core/Models/StorageScanOptions.cs
T
2026-05-04 12:31:13 +02:00

12 lines
381 B
C#

namespace SharepointToolbox.Core.Models;
public record StorageScanOptions(
bool PerLibrary = true,
bool IncludeSubsites = false,
int FolderDepth = 0, // 0 = library root only; >0 = recurse N levels
bool IncludeHiddenLibraries = true,
bool IncludePreservationHold = true,
bool IncludeListAttachments = true,
bool IncludeRecycleBin = true
);