1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-03-01 10:41:09 +00:00
Files
directory-connector/src/models/ldapConfiguration.ts
2018-04-27 22:53:46 -04:00

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;
}