import { IContact } from "./contact.interface"; export interface IContactDepartment { id?: number; name: string; contacts: IContact[]; }