src/app/dto/config.ts
Properties |
| directoryToExportModels |
Type : string
|
|
Defined in src/app/dto/config.ts:6
|
| directoryToInteraction |
Type : string
|
|
Defined in src/app/dto/config.ts:4
|
| directoryToSaveModels |
Type : string
|
|
Defined in src/app/dto/config.ts:3
|
| feature |
Type : boolean
|
Default value : false
|
|
Defined in src/app/dto/config.ts:13
|
| pathLastOptimizationInput |
Type : string
|
|
Defined in src/app/dto/config.ts:11
|
| pathPapyrus |
Type : string
|
|
Defined in src/app/dto/config.ts:5
|
| pathToProfile |
Type : string
|
|
Defined in src/app/dto/config.ts:7
|
| pathToProfileConcern |
Type : string
|
|
Defined in src/app/dto/config.ts:8
|
| pathToProfilePatterns |
Type : string
|
|
Defined in src/app/dto/config.ts:10
|
| pathToProfileRelationships |
Type : string
|
|
Defined in src/app/dto/config.ts:9
|
| pathToTemplateModelsDirectory |
Type : string
|
|
Defined in src/app/dto/config.ts:2
|
| patterns |
Type : boolean
|
Default value : false
|
|
Defined in src/app/dto/config.ts:14
|
| relationships |
Type : boolean
|
Default value : false
|
|
Defined in src/app/dto/config.ts:15
|
| smarty |
Type : boolean
|
Default value : false
|
|
Defined in src/app/dto/config.ts:12
|
export class Config {
pathToTemplateModelsDirectory: string;
directoryToSaveModels: string;
directoryToInteraction: string;
pathPapyrus: string;
directoryToExportModels: string;
pathToProfile: string;
pathToProfileConcern: string;
pathToProfileRelationships: string;
pathToProfilePatterns: string;
pathLastOptimizationInput: string;
smarty:boolean = false;
feature:boolean = false;
patterns:boolean = false;
relationships:boolean = false;
}