library-ts/browser/users/UserApp.ts

13 lines
255 B
TypeScript
Raw Normal View History

2025-11-25 14:07:19 +00:00
import { UserSystem } from "./UserSystem";
export class UserApp
{
protected _userSystem:UserSystem;
protected _appID:string;
constructor( userSystem:UserSystem, appID:string )
{
this._userSystem = userSystem;
this._appID = appID;
}
}