mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 09:13:33 +00:00
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
export class SelectionReadOnlyResponse {
|
|
id: string;
|
|
readOnly: boolean;
|
|
|
|
constructor(response: any) {
|
|
this.id = response.Id;
|
|
this.readOnly = response.ReadOnly;
|
|
}
|
|
}
|