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; } }