import {PropertySet} from "./PropertySet"; import {PropertyType} from "./property_type/PropertyType"; export class PropertyNameString { readonly propertySet: PropertySet; readonly propertyName: string; readonly propertyType: PropertyType; constructor(propertySet: PropertySet, propertyName: string, propertyType: PropertyType) { this.propertySet = propertySet; this.propertyName = propertyName; this.propertyType = propertyType; } toString(): string { return `${this.propertyName} (prop set: ${this.propertySet})`; } }