transforming response and getting the right object back for the line

This commit is contained in:
talksik
2022-05-05 08:56:40 -05:00
parent d013212054
commit 7f5eba7732
7 changed files with 116 additions and 38 deletions
@@ -1,5 +1,6 @@
import { Line } from "../models/line.model";
import MasterLineData from "../models/masterLineData.model";
export default class GetUserLinesResponse {
constructor(public lines: Line[]) {}
constructor(public masterLines: MasterLineData[]) {}
}