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