import Relationship from "../models/relationship.model"; import { User } from "../models/user.model"; export default class GetContactsResponse { contactsDetails: ContactDetails[] = []; constructor() {} } export class ContactDetails { constructor(public otherUser: User, public relationship: Relationship) {} }