blob: f7b5006eabf62d186f34877f9d27b6e7dc34a8ed [file] [log] [blame]
export class Controller {
readonly name: string;
readonly clusterName: string;
readonly liveInstance: string;
readonly sessionId: string;
readonly helixVersion: string;
constructor(name, cluster, liveInstance, sessionId, version) {
this.name = name;
this.clusterName = cluster;
this.liveInstance = liveInstance;
this.sessionId = sessionId;
this.helixVersion = version;
}
}