mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 07:13:32 +00:00
15 lines
312 B
TypeScript
15 lines
312 B
TypeScript
import { FolderView } from 'jslib/models/view/folderView';
|
|
|
|
import { BaseResponse } from './baseResponse';
|
|
|
|
export class FolderResponse extends BaseResponse {
|
|
id: string;
|
|
name: string;
|
|
|
|
constructor(o: FolderView) {
|
|
super('folder');
|
|
this.id = o.id;
|
|
this.name = o.name;
|
|
}
|
|
}
|