discord-bot-rss-feed/app/models/feed.js

7 lines
155 B
JavaScript
Raw Normal View History

2017-07-27 01:53:01 +03:00
module.exports = class Feed{
constructor({link, channelName, roleID}){
this.link = link;
this.channelName = channelName;
this.roleID = roleID;
}
};