working displaying contacts, but of course not nice

This commit is contained in:
talksik
2022-03-20 18:24:50 -04:00
parent b491eee62c
commit b9f93d741d
5 changed files with 102 additions and 6 deletions
@@ -0,0 +1,12 @@
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) {}
}