9 lines
210 B
C#
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
|
|
);
|