@eddye68/studio-client
Version:
The AWS service Studio client
14 lines • 307 B
JavaScript
// src/model/wfl/publication.ts
var Publication = class {
constructor(params) {
this.__classname__ = "Publication";
this.Id = null;
this.Name = null;
this.Id = params.Id ?? null;
this.Name = params.Name ?? null;
}
};
export {
Publication
};
//# sourceMappingURL=publication.mjs.map