source: bus-n-go-pavel-216049/bus-n-go-frontend/src/app/model/LineStation.ts@ bfb90dd

Last change on this file since bfb90dd was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 4 weeks ago

split group project and individual project into two separate folders

  • Property mode set to 100644
File size: 230 bytes
Line 
1import {Line} from "./Line";
2import {Station} from "./Station";
3import {Direction} from "./Direction";
4
5export interface LineStation {
6 id: number,
7 redenBroj: number,
8 linija: Line,
9 postojka: Station,
10 pravec: Direction,
11}
Note: See TracBrowser for help on using the repository browser.