module.exports = class geoJsonModel{ constructor(type, name, crs, features){ this.type = type; this.name = name; this.crs = crs; this.features = features; } }