mirror of
https://github.com/bitwarden/directory-connector
synced 2026-03-01 10:41:09 +00:00
14 lines
273 B
TypeScript
14 lines
273 B
TypeScript
import { DirectoryType } from '../enums/directoryType';
|
|
|
|
export class LdapConfiguration {
|
|
ssl = false;
|
|
hostname: string;
|
|
port = 389;
|
|
domain: string;
|
|
rootPath: string;
|
|
currentUser = false;
|
|
username: string;
|
|
password: string;
|
|
ad = true;
|
|
}
|