mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
16 lines
595 B
TypeScript
16 lines
595 B
TypeScript
import { RCBrowserSockets } from "./RCBrowserSockets.js";
|
|
import { RemoteControlMode } from "../Enums/RemoteControlMode.js";
|
|
|
|
export class Conductor {
|
|
constructor(rcBrowserSockets: RCBrowserSockets, clientID: string, serviceID: string, requesterName:string) {
|
|
this.RCBrowserSockets = rcBrowserSockets;
|
|
this.ClientID = clientID;
|
|
this.ServiceID = serviceID;
|
|
this.RequesterName = requesterName;
|
|
}
|
|
RCBrowserSockets: RCBrowserSockets;
|
|
ClientID: string = "";
|
|
ServiceID : string = "";
|
|
Mode: RemoteControlMode;
|
|
RequesterName: string = "";
|
|
} |