mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
[SM-288] Rename models to follow naming convention (#3795)
This commit is contained in:
13
libs/common/src/models/data/folder.data.ts
Normal file
13
libs/common/src/models/data/folder.data.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { FolderResponse } from "../response/folderResponse";
|
||||
|
||||
export class FolderData {
|
||||
id: string;
|
||||
name: string;
|
||||
revisionDate: string;
|
||||
|
||||
constructor(response: FolderResponse) {
|
||||
this.name = response.name;
|
||||
this.id = response.id;
|
||||
this.revisionDate = response.revisionDate;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user