src/app/interfaces/core-parameter.interface.ts
Properties |
| category |
category:
|
Type : string
|
| description |
description:
|
Type : string
|
| family |
family:
|
Type : string
|
| id |
id:
|
Type : string
|
| is_load_onstart |
is_load_onstart:
|
Type : boolean
|
| key |
key:
|
Type : string
|
| parent_key |
parent_key:
|
Type : string
|
| status |
status:
|
Type : boolean
|
| value |
value:
|
Type : string
|
export interface ICoreParameter {
id: string
key: string
value: string
description: string
family: string
category: string
parent_key: string
is_load_onstart: boolean
status: boolean
}