ngx-admin/src/app/pages/maps/search-map/entity/Location.ts

5 lines
107 B
TypeScript
Raw Normal View History

export class Location {
constructor(public latitude: number = 54, public longitude: number = 33) {
}
}