2013-06-22 23:48:57 +00:00
|
|
|
define(function() {
|
|
|
|
|
2013-09-12 23:25:25 +00:00
|
|
|
function Extension(extensionId, extensionName, isOptional, disableInViewer, disableInLight) {
|
2013-06-22 23:48:57 +00:00
|
|
|
this.extensionId = extensionId;
|
|
|
|
this.extensionName = extensionName;
|
|
|
|
this.isOptional = isOptional;
|
2013-07-29 00:03:19 +00:00
|
|
|
this.disableInViewer = disableInViewer;
|
2013-09-12 23:25:25 +00:00
|
|
|
this.disableInLight = disableInLight;
|
2013-06-22 23:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return Extension;
|
|
|
|
});
|