tabs/Service.js

11 lines
249 B
JavaScript
Raw Normal View History

2019-08-31 16:14:06 +02:00
class Service {
constructor(partition, name, icon, isImage, url) {
this.partition = partition;
this.name = name;
this.icon = icon;
this.isImage = isImage;
this.url = url;
}
}
module.exports = Service;