Integration des Active Directory Controllers und Active Directory Service abgeschlossen.

This commit is contained in:
Developer 02
2024-03-11 08:48:40 +01:00
parent 58f87e2be5
commit df9bc33795
420 changed files with 2611 additions and 4118 deletions

View File

@@ -0,0 +1,32 @@
namespace DigitalData.UserManager.Application.DTOs.User
{
public record UserPrincipalDto
(
Guid Guid,
string SId,
string EmployeeId,
string SamAccountName,
string GivenName,
string MiddleName,
string Surname,
string EmailAddress,
string VoiceTelephoneNumber,
DateTime? AccountExpirationDate,
DateTime? AccountLockoutTime,
bool AllowReversiblePasswordEncryption,
int BadLogonCount,
bool DelegationPermitted,
bool? Enabled,
string HomeDirectory,
string HomeDrive,
DateTime? LastBadPasswordAttempt,
DateTime? LastLogon,
DateTime? LastPasswordSet,
bool PasswordNeverExpires,
bool PasswordNotRequired,
byte[] PermittedLogonTimes,
bool SmartcardLogonRequired,
bool UserCannotChangePassword
);
}

View File

@@ -0,0 +1,14 @@
namespace DigitalData.UserManager.Application.DTOs.User
{
public record UserPrincipalReadDto
(
Guid Guid,
string SId,
string EmployeeId,
string SamAccountName,
string GivenName,
string MiddleName,
string Surname,
string EmailAddress
);
}