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

12 lines
325 B
C#

namespace SharepointToolbox.Web.Core.Models;
public record StorageScanOptions(
bool PerLibrary = true,
bool IncludeSubsites = false,
int FolderDepth = 0,
bool IncludeHiddenLibraries = true,
bool IncludePreservationHold = true,
bool IncludeListAttachments = true,
bool IncludeRecycleBin = true
);