diff --git a/app/models/feed.js b/app/models/feed.js new file mode 100644 index 0000000..f9281a1 --- /dev/null +++ b/app/models/feed.js @@ -0,0 +1,7 @@ +module.exports = class Feed{ + constructor({link, channelName, roleID}){ + this.link = link; + this.channelName = channelName; + this.roleID = roleID; + } +}; \ No newline at end of file diff --git a/app/models/guild-data.js b/app/models/guild-data.js new file mode 100644 index 0000000..89042ac --- /dev/null +++ b/app/models/guild-data.js @@ -0,0 +1,6 @@ +module.exports = class GuildData { + constructor({id, feeds}) { + this.id = id; + this.feeds = feeds + } +}; \ No newline at end of file