Add database objects
This commit is contained in:
parent
f966e0564e
commit
3618cbbddb
3 changed files with 79 additions and 0 deletions
14
scripts/database/entry/activity.JS
Normal file
14
scripts/database/entry/activity.JS
Normal file
|
@ -0,0 +1,14 @@
|
|||
const Entry = require(`./object.JS`);
|
||||
|
||||
class Activity extends Entry {
|
||||
username;
|
||||
description;
|
||||
duration;
|
||||
date;
|
||||
|
||||
constructor(PROPERTIES) {
|
||||
super(PROPERTIES);
|
||||
};
|
||||
}
|
||||
|
||||
module.exports = Activity;
|
Loading…
Add table
Add a link
Reference in a new issue