Zooflow: Add Active Directory User Import

This commit is contained in:
Jonathan Jenne
2022-03-07 15:51:27 +01:00
parent 4dec4be471
commit 6ffc699fb1
30 changed files with 1514 additions and 348 deletions

View File

@@ -1,13 +1,13 @@
Public Class ADGroup
Public SAMAccountName As String
Public ObjectClass As String
Public CN As String
Public Description As String
Public DistinguishedName As String
Public Name As String
Public ObjectCategory As String
Public Property SAMAccountName As String
Public Property ObjectClass As String
Public Property CN As String
Public Property Description As String
Public Property DistinguishedName As String
Public Property Name As String
Public Property ObjectCategory As String
Public Overrides Function ToString() As String
Return $"SAMAccountName={SAMAccountName}"
Return SAMAccountName
End Function
End Class