mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 09:13:33 +00:00
12 lines
249 B
TypeScript
12 lines
249 B
TypeScript
export class FolderResponse {
|
|
id: string;
|
|
name: string;
|
|
revisionDate: string;
|
|
|
|
constructor(response: any) {
|
|
this.id = response.Id;
|
|
this.name = response.Name;
|
|
this.revisionDate = response.RevisionDate;
|
|
}
|
|
}
|