11 lines
221 B
C#
11 lines
221 B
C#
namespace ADBulkTool.Models;
|
|
|
|
public sealed record AdConfig(
|
|
string Host,
|
|
int Port,
|
|
bool UseLdaps,
|
|
bool IgnoreCertificateErrors,
|
|
string SearchBaseDn,
|
|
string BindUsername,
|
|
string BindPassword);
|