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:
336 bytes
|
Line | |
---|
1 | import {TicketResponse} from "./TicketResponse";
|
---|
2 | import {UserResponse} from "./UserResponse";
|
---|
3 | import {LineStation} from "../LineStation";
|
---|
4 |
|
---|
5 | export interface CommuteResponse {
|
---|
6 | commuter: UserResponse,
|
---|
7 | ticket: TicketResponse,
|
---|
8 | stationStart: LineStation,
|
---|
9 | status: String,
|
---|
10 | startDate: Date,
|
---|
11 | endDate: Date | null,
|
---|
12 | id: number,
|
---|
13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.