/* classe GlobalStore */
export class GlobalStore{
constructor(){
this.get = {};
}
add(field, value){
this.get[field] = value;