mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 06:51:55 +00:00
17 lines
694 B
C#
17 lines
694 B
C#
namespace Berufsschule_HAM.Models;
|
|
|
|
public class LdapConfig
|
|
{
|
|
public required string Host { get; set; }
|
|
public int Port { get; set; } = 389;
|
|
public bool UseSsl { get; set; } = false;
|
|
public required string BindDn { get; set; }
|
|
public required string BindPassword { get; set; }
|
|
public required string BaseDn { get; set; }
|
|
public string AssetsOu { get; set; } = "ou=assets";
|
|
public string LocationsOu { get; set; } = "ou=locations";
|
|
public string UsersOu { get; set; } = "ou=users";
|
|
public string GroupsOu { get; set; } = "ou=groups";
|
|
public string MigrationsOu { get; set; } = "ou=migrations";
|
|
public int ConnectionRetryCount { get; set; } = 10;
|
|
} |