mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
12 lines
396 B
JavaScript
12 lines
396 B
JavaScript
export class Conductor {
|
|
constructor(rcBrowserSockets, clientID, serviceID, requesterName) {
|
|
this.ClientID = "";
|
|
this.ServiceID = "";
|
|
this.RequesterName = "";
|
|
this.RCBrowserSockets = rcBrowserSockets;
|
|
this.ClientID = clientID;
|
|
this.ServiceID = serviceID;
|
|
this.RequesterName = requesterName;
|
|
}
|
|
}
|
|
//# sourceMappingURL=Conductor.js.map
|