diff --git a/projects/project-3/frontend/src/app/service/domain/bike-station.ts b/projects/project-3/frontend/src/app/service/domain/bike-station.ts new file mode 100644 index 0000000..e0d600f --- /dev/null +++ b/projects/project-3/frontend/src/app/service/domain/bike-station.ts @@ -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 + ) { + } +}