mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
12 lines
267 B
TypeScript
12 lines
267 B
TypeScript
export class SelectionReadOnlyRequest {
|
|
id: string;
|
|
readOnly: boolean;
|
|
hidePasswords: boolean;
|
|
|
|
constructor(id: string, readOnly: boolean, hidePasswords: boolean) {
|
|
this.id = id;
|
|
this.readOnly = readOnly;
|
|
this.hidePasswords = hidePasswords;
|
|
}
|
|
}
|