Files
keepr/keepr.client/src/models/Keep.js
T
2022-08-02 15:00:04 -06:00

12 lines
317 B
JavaScript

export class Keep {
constructor(keepData) {
this.id = keepData.id
this.creatorId = keepData.creatorId
this.name = keepData.name
this.description = keepData.description
this.img = keepData.img
this.views = keepData.views
this.kept = keepData.kept
this.creator = keepData.creator
}
}