tabs/Service.js
2019-08-31 16:14:43 +02:00

11 lines
249 B
JavaScript

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;