@eddye68/studio-client
Version:
The AWS service Studio client
16 lines • 392 B
JavaScript
// src/model/wfl/indesign-article.ts
var InDesignArticle = class {
constructor(Id = null, Name = null, SplineIDs = null) {
this.__classname__ = "InDesignArticle";
this.Id = null;
this.Name = null;
this.SplineIDs = null;
this.Id = Id;
this.Name = Name;
this.SplineIDs = SplineIDs;
}
};
export {
InDesignArticle
};
//# sourceMappingURL=indesign-article.mjs.map