Initial AD bulk tool prototype

This commit is contained in:
mikisoq
2026-07-29 01:29:32 -01:00
parent 542aade40c
commit e65474beaf
12 changed files with 1372 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
namespace ADBulkTool.Models;
public sealed record AdConfig(
string Host,
int Port,
bool UseLdaps,
bool IgnoreCertificateErrors,
string SearchBaseDn,
string BindUsername,
string BindPassword);