Kommentare zur Dokumentation hinzugefügt und Pakete konfiguriert.

This commit is contained in:
Developer 02
2024-06-20 16:20:50 +02:00
parent b7584a1632
commit 0ad92e7592
19 changed files with 588 additions and 56 deletions

View File

@@ -1,13 +1,28 @@
namespace DigitalData.Core.Application
{
/// <summary>
/// Represents the options for configuring directory search operations.
/// </summary>
public class DirectorySearchOptions
{
/// <summary>
/// Gets or initializes the name of the server to be used in the directory search.
/// </summary>
public string? ServerName { get; init; }
/// <summary>
/// Gets or initializes the root directory path for the search.
/// </summary>
public string? Root { get; init; }
/// <summary>
/// Gets or initializes the number of days before the user cache expires.
/// </summary>
public int UserCacheExpirationDays { get; init; }
/// <summary>
/// Gets or initializes the custom search filters to be applied during directory searches.
/// </summary>
public Dictionary<string, string> CustomSearchFilters { get; init; } = new();
}
}