import {property} from '@loopback/repository'; import { User } from '@sourcefuse-npm/patient-facade'; export class UserSecondaryData extends User { @property({ type: 'string', }) secondaryEmail: string; @property({ type: 'string', }) secondaryPhone?: string; constructor(data?: Partial) { super(data); } }