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

13 lines
334 B
C#

namespace SharepointToolbox.Web.Core.Models;
public record DuplicateScanOptions(
string Mode = "Files",
bool MatchSize = true,
bool MatchCreated = false,
bool MatchModified = false,
bool MatchSubfolderCount = false,
bool MatchFileCount = false,
bool IncludeSubsites = false,
string? Library = null
);