export class TraitModel { traitKey: string; traitValue: any; constructor(key: string, value: any) { this.traitKey = key; this.traitValue = value; } }