add Bikestation object

This commit is contained in:
tim-herbst 2020-12-19 18:53:42 +01:00 committed by Tim Herbst
parent 22cd28e2b3
commit 95baf1f9b7

View File

@ -0,0 +1,20 @@
export interface IBikeStation {
id?: string;
url?: string;
commonName?: string;
placeType?: string;
lat?: number;
lon?: number;
}
export class BikeStation implements IBikeStation {
constructor(
public id?: string,
public url?: string,
public commonName?: string,
public placeType?: string,
public lat?: number,
public lon?: number
) {
}
}