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

9 lines
210 B
C#

namespace SharepointToolbox.Web.Core.Models;
public record ScanOptions(
bool IncludeInherited = false,
bool ScanFolders = true,
int FolderDepth = 1,
bool IncludeSubsites = false
);