src/lib/core/log-in-request.ts
Properties |
| domain |
domain:
|
Type : string
|
| password |
password:
|
Type : string
|
| service |
service:
|
Type : string
|
| username |
username:
|
Type : string
|
export interface LogInRequest {
service: string;
domain: string;
username: string;
password: string;
}