1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-15 07:43:27 +00:00
Files
directory-connector/src/models/ldapConfiguration.ts
2018-04-27 17:16:54 -04:00

14 lines
308 B
TypeScript

import { DirectoryType } from '../enums/directoryType';
export class LdapConfiguration {
ssl: boolean = false;
hostname: string;
port: number = 389;
domain: string;
rootPath: string;
currentUser: boolean = false;
username: string;
password: string;
ad: boolean = true;
}