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