mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00:00
14 lines
297 B
TypeScript
14 lines
297 B
TypeScript
import { FolderResponse } from "../response/folder.response";
|
|
|
|
export class FolderData {
|
|
id: string;
|
|
name: string;
|
|
revisionDate: string;
|
|
|
|
constructor(response: FolderResponse) {
|
|
this.name = response.name;
|
|
this.id = response.id;
|
|
this.revisionDate = response.revisionDate;
|
|
}
|
|
}
|