2020-05-29 16:37:35 +02:00

10 lines
172 B
JavaScript

class WSServer{
constructor(serverName, serverURI){
this.serverName = serverName;
this.serverURI = serverURI;
}
setPassword(pwd){
this.serverPassword = pwd;
}
}