13 lines
334 B
C#
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
|
|
);
|