diff options
author | yipstanley <stanley_yip@brown.edu> | 2019-02-10 22:09:48 -0500 |
---|---|---|
committer | yipstanley <stanley_yip@brown.edu> | 2019-02-10 22:09:48 -0500 |
commit | 2e930b98726a09e597106d43a6763dd36d038771 (patch) | |
tree | 34f2c1e3a0bf652be571c0259c3087b1d36dac00 /src/server/Client.ts | |
parent | 5b55e1b6081393989ca35d2964da9604c2a93802 (diff) |
adsklfa
Diffstat (limited to 'src/server/Client.ts')
-rw-r--r-- | src/server/Client.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/server/Client.ts b/src/server/Client.ts new file mode 100644 index 000000000..6b8841658 --- /dev/null +++ b/src/server/Client.ts @@ -0,0 +1,15 @@ +import { computed } from "mobx"; + +export class Client { + constructor(guid: string) { + this.guid = guid + } + + private guid: string; + + @computed + public get GUID(): string { + return this.guid + } + +}
\ No newline at end of file |