working displaying contacts, but of course not nice
This commit is contained in:
@@ -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) {}
|
||||
}
|
||||
Reference in New Issue
Block a user