1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/models/data/folderData.ts

16 lines
369 B
TypeScript
Raw Normal View History

2018-02-19 18:33:32 +01:00
import { FolderResponse } from '../response';
2018-01-20 20:12:18 +01:00
export class FolderData {
id: string;
userId: string;
name: string;
revisionDate: string;
constructor(response: FolderResponse, userId: string) {
this.userId = userId;
this.name = response.name;
this.id = response.id;
this.revisionDate = response.revisionDate;
}
}