@eddye68/studio-client
Version:
The AWS service Studio client
16 lines • 396 B
JavaScript
// src/model/wfl/issue.ts
var Issue = class {
constructor(Id = null, NameId = null, OverrulePublicationId = null) {
this.__classname__ = "Issue";
this.Id = null;
this.NameId = null;
this.OverrulePublicationId = null;
this.Id = Id;
this.NameId = NameId;
this.OverrulePublicationId = OverrulePublicationId;
}
};
export {
Issue
};
//# sourceMappingURL=issue.mjs.map