cleaning bunch of models, services, and routes for new line stuff

This commit is contained in:
talksik
2022-05-05 07:49:31 -05:00
parent 2782fde1ba
commit 149be0e23c
15 changed files with 231 additions and 233 deletions
@@ -1,4 +1,4 @@
import { Conversation } from "../models/conversation.model";
import { Line } from "../models/line.model";
export default class GetDmConversationByOtherUserIdResponse {
constructor(public conversation: Conversation) {}
@@ -1,5 +0,0 @@
import { Conversation } from "../models/conversation.model";
export default class GetUserConversationsResponse {
constructor(public convos: Conversation[]) {}
}
@@ -0,0 +1,5 @@
import { Line } from "../models/line.model";
export default class GetUserLinesResponse {
constructor(public lines: Line[]) {}
}