GraphicalComment.ts 300 B

12345678910
  1. import {GraphicalLabel} from "./GraphicalLabel";
  2. export class GraphicalComment {
  3. constructor(label: GraphicalLabel, settingsLabel: GraphicalLabel) {
  4. this.label = label;
  5. this.settings = settingsLabel;
  6. }
  7. public label: GraphicalLabel;
  8. public settings: GraphicalLabel;
  9. }