ContentMarker.ts 298 B

12345678910111213
  1. class ContentMarker {
  2. public name : string;
  3. private readonly important : boolean = false;
  4. constructor (name : string, important? : boolean) {
  5. this.name = name;
  6. this.important = important == true;
  7. }
  8. public isImportant () {
  9. return this.important;
  10. }
  11. }