Initial commit

This commit is contained in:
2025-09-26 11:40:52 +02:00
commit 95e9f3232c
201 changed files with 146461 additions and 0 deletions

13
Services/LdapOptions.cs Normal file
View File

@@ -0,0 +1,13 @@
namespace Berufsschule_HAM.Services;
public class LdapOptions
{
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";
}