Import des sources angular à partir de 'headup_app'
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import { Jump } from './jump.model';
|
||||
import { Profile } from './profile.model';
|
||||
|
||||
export interface DropZone {
|
||||
lieu: string;
|
||||
oaci: string;
|
||||
author: Profile;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
}
|
||||
|
||||
export interface DropZoneByOaci {
|
||||
lieu: string,
|
||||
oaci: string,
|
||||
count: number
|
||||
}
|
||||
|
||||
export interface DropZoneByYear {
|
||||
lieu: string,
|
||||
oaci: string,
|
||||
year: number,
|
||||
count: number
|
||||
}
|
||||
|
||||
export interface DropZonesPageData {
|
||||
dropZonesByOaci: Array<DropZoneByOaci>;
|
||||
dropZonesByOaciByYear: Array<DropZoneByYear>;
|
||||
lastjump: Jump;
|
||||
}
|
||||
Reference in New Issue
Block a user