export default class ParsedText {
  public text: string;

  public constructor(text: string) {
    this.text = text;
  }
}
