Eneko Nieto
2021-01-18 01:07:29 +01:00
parent 63dabe3357
commit 83be283757
43 changed files with 1469 additions and 551 deletions

View File

@@ -0,0 +1,7 @@
export interface Flight {
id: number; // int + double
from: string;
to: string;
date: string;
// JSON: ISO-String 2016-12-24T17:00:00.000+01:00
}