blob: be1ffc2ba60c36885be16187f4fa3c15a12ba60e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { action, computed } from "mobx";
export class Client {
private _guid: string;
// private operations: number;
constructor(guid: string) {
this._guid = guid;
// this.operations = 0;
}
// @computed public get OPERATIONS(): number {
// return this.operations;
// }
// @action
// public setOperations(newOperations: number): void {
// this.operations = newOperations;
// }
@computed public get GUID(): string { return this._guid; }
}
|