import { UserSystem } from "./UserSystem";
export class UserApp
{
protected _userSystem:UserSystem;
protected _appID:string;
constructor( userSystem:UserSystem, appID:string )
this._userSystem = userSystem;
this._appID = appID;
}