Bug fix +
Meilleur chargement du cache après login
This commit is contained in:
@@ -45,3 +45,22 @@ export class JumpResp {
|
||||
public jumpDate: Date;
|
||||
public isSpecial: boolean;
|
||||
}
|
||||
|
||||
export class Jump {
|
||||
constructor(data: any) {
|
||||
Object.assign(this, data);
|
||||
this.jumpDate = new Date(data.jumpDate);
|
||||
}
|
||||
|
||||
public id: number;
|
||||
public jumpType: JumpTypeResp;
|
||||
public aircraft: AircraftResp;
|
||||
public dropZone: DropZoneResp;
|
||||
public gear: GearResp;
|
||||
public exitAltitude: number;
|
||||
public deployAltitude: number;
|
||||
public withCutaway: boolean;
|
||||
public notes: string;
|
||||
public jumpDate: Date;
|
||||
public isSpecial: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user