@eddye68/studio-client
Version:
The AWS service Studio client
20 lines • 462 B
JavaScript
// src/model/wfl/placement.ts
var Placement = class {
constructor(Id = null, Left = null, Top = null, Width = null, Height = null) {
this.__classname__ = "Placement";
this.Id = null;
this.Left = null;
this.Top = null;
this.Width = null;
this.Height = null;
this.Id = Id;
this.Left = Left;
this.Top = Top;
this.Width = Width;
this.Height = Height;
}
};
export {
Placement
};
//# sourceMappingURL=placement.mjs.map