/* Denna klass är en modell för användare. name : String (Användarnamn) deviceId : Int (Enhetens ID) location : Coordinates (Användarens koordinater) */ class User { constructor(name, deviceId, location) { this.name = name; this.deviceId = deviceId; this.location = location; } } export default User;