13 lines
352 B
C#
13 lines
352 B
C#
namespace DigitalData.Core.Application
|
|
{
|
|
public class DirectorySearchOptions
|
|
{
|
|
public string? ServerName { get; init; }
|
|
|
|
public string? Root { get; init; }
|
|
|
|
public int UserCacheExpirationDays { get; init; }
|
|
|
|
public Dictionary<string, string> CustomSearchFilters { get; init; } = new();
|
|
}
|
|
} |