12 lines
381 B
C#
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
|
|
);
|