mirror of
https://github.com/bitwarden/browser
synced 2025-12-22 11:13:46 +00:00
14 lines
321 B
TypeScript
14 lines
321 B
TypeScript
export class SelectionReadOnly {
|
|
static template(): SelectionReadOnly {
|
|
return new SelectionReadOnly('00000000-0000-0000-0000-000000000000', false);
|
|
}
|
|
|
|
id: string;
|
|
readOnly: boolean;
|
|
|
|
constructor(id: string, readOnly: boolean) {
|
|
this.id = id;
|
|
this.readOnly = readOnly;
|
|
}
|
|
}
|