aboutsummaryrefslogtreecommitdiff
path: root/src/server/Client.ts
blob: 02402a5a01cc24c576f454787798ae71ed6c0c2d (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;
    }

}