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