mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 06:43:35 +00:00
15 lines
319 B
TypeScript
15 lines
319 B
TypeScript
class FolderResponse {
|
|
id: string;
|
|
name: string;
|
|
revisionDate: string;
|
|
|
|
constructor(response: any) {
|
|
this.id = response.Id;
|
|
this.name = response.Name;
|
|
this.revisionDate = response.RevisionDate;
|
|
}
|
|
}
|
|
|
|
export { FolderResponse };
|
|
(window as any).FolderResponse = FolderResponse;
|