You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
787 B
27 lines
787 B
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Place = exports.UserLocation = exports.PlacePosition = void 0;
|
|
class PlacePosition {
|
|
constructor(timestamp, latitude, longitude) {
|
|
this.timestamp = timestamp;
|
|
this.coords = { latitude, longitude };
|
|
}
|
|
}
|
|
exports.PlacePosition = PlacePosition;
|
|
class UserLocation {
|
|
constructor(uuid, musicId, latitude, longitude) {
|
|
this.uuid = uuid;
|
|
this.musicId = musicId;
|
|
this.latitude = latitude;
|
|
this.longitude = longitude;
|
|
}
|
|
}
|
|
exports.UserLocation = UserLocation;
|
|
class Place {
|
|
constructor(address, position) {
|
|
this.position = position;
|
|
this.address = address;
|
|
}
|
|
}
|
|
exports.Place = Place;
|
|
//# sourceMappingURL=locationModel.js.map
|