aboutsummaryrefslogtreecommitdiff
path: root/src/server/Client.ts
blob: 6b8841658d2b9129bbe83e694f9bf1ac03c9f22b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
    }

}