Last change
on this file was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 3 months ago |
split group project and individual project into two separate folders
|
-
Property mode
set to
100644
|
File size:
314 bytes
|
Line | |
---|
1 | import {Bus} from "../Bus";
|
---|
2 | import {Direction} from "../Direction";
|
---|
3 | import {Line} from "../Line";
|
---|
4 | import {UserResponse} from "./UserResponse";
|
---|
5 |
|
---|
6 | export interface RouteInstanceResponse {
|
---|
7 | bus: Bus,
|
---|
8 | direction: Direction,
|
---|
9 | line: Line,
|
---|
10 | driver: UserResponse,
|
---|
11 | start: Date,
|
---|
12 | end: Date | undefined,
|
---|
13 | id: number
|
---|
14 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.