@wbg-mde/model
Version:
Metadata Editor Model Definitions
13 lines (12 loc) • 433 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class CatalogSettings {
constructor(preference) {
this.id = preference.id;
this.name = preference.name || '';
this.url = preference.url || '';
this.authentication_type = preference.authentication_type || '';
this.api_key = preference.api_key || '';
}
}
exports.CatalogSettings = CatalogSettings;