You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
472 B
TypeScript
23 lines
472 B
TypeScript
|
1 week ago
|
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;
|
||
|
|
}
|