@wbg-mde/model
Version:
Metadata Editor Model Definitions
20 lines (19 loc) • 690 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class TemplateDesign {
constructor(template) {
this.id = template.id;
this.type = template.type;
this.systemDefine = template.systemDefine;
this.path = template.path;
this.name = template.name;
this.fileName = template.fileName;
this.author = template.author;
this.created = template.created;
this.modified = template.modified;
this.description = template.description;
this.organization = template.organization;
this.version = template.version;
}
}
exports.TemplateDesign = TemplateDesign;