aboutsummaryrefslogtreecommitdiff
path: root/src/server/Client.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/Client.ts')
-rw-r--r--src/server/Client.ts11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/server/Client.ts b/src/server/Client.ts
index 02402a5a0..b4c419438 100644
--- a/src/server/Client.ts
+++ b/src/server/Client.ts
@@ -1,15 +1,12 @@
import { computed } from "mobx";
export class Client {
+ private _guid: string;
+
constructor(guid: string) {
- this.guid = guid;
+ this._guid = guid;
}
- private guid: string;
-
- @computed
- public get GUID(): string {
- return this.guid;
- }
+ @computed public get GUID(): string { return this._guid; }
} \ No newline at end of file