blob: b4c419438ff820299d665bd80dd44647c8bac036 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { computed } from "mobx";
export class Client {
private _guid: string;
constructor(guid: string) {
this._guid = guid;
}
@computed public get GUID(): string { return this._guid; }
}
|