export class Session { static createFromStorage() { let session = new Session() session.UUID } constructor() { this.UUID = '' this.authenticated = false this.UserID = 0 } }