export interface AuthenticationToken { token: string; } export interface AuthenticationResponse extends AuthenticationToken { authenticated: boolean porOrgacode: string; userId: string; userType: string; password: string; userHomevac: string; } export class UserCredentials { porOrgacode!: string; userId!: string; password!: string; token!: string; } export class AuthenticationRequest { isInProgress: boolean = false; }