export abstract class Annotation { public readonly attribute: Attribute; public constructor(attribute?: Attribute) { this.attribute = attribute; } }