@eddye68/studio-client
Version:
The AWS service Studio client
28 lines • 820 B
JavaScript
// src/model/wfl/element.ts
var Element = class {
constructor(ID = null, Name = null, LengthWords = null, LengthChars = null, LengthParas = null, LengthLines = null, Snippet = null, Version = null, Content = null) {
this.__classname__ = "Element";
this.ID = null;
this.Name = null;
this.LengthWords = null;
this.LengthChars = null;
this.LengthParas = null;
this.LengthLines = null;
this.Snippet = null;
this.Version = null;
this.Content = null;
this.ID = ID;
this.Name = Name;
this.LengthWords = LengthWords;
this.LengthChars = LengthChars;
this.LengthParas = LengthParas;
this.LengthLines = LengthLines;
this.Snippet = Snippet;
this.Version = Version;
this.Content = Content;
}
};
export {
Element
};
//# sourceMappingURL=element.mjs.map