diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-05-04 21:09:00 +0200 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-05-04 21:09:00 +0200 |
commit | da27997809160bfea0e134f7a2f44d63174447f5 (patch) | |
tree | d8d752e67bc555150eb04cb812fa95263737ced6 /frontend/src/app/_data/Experiment.ts | |
parent | ae29f2f27d680d4152d3f19eb1db284aa951d0cd (diff) | |
parent | 5f45f5daf61359b039a6154c324a6e6452f0b8a9 (diff) |
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into redesign
Diffstat (limited to 'frontend/src/app/_data/Experiment.ts')
-rw-r--r-- | frontend/src/app/_data/Experiment.ts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/frontend/src/app/_data/Experiment.ts b/frontend/src/app/_data/Experiment.ts index 9ad57fc3..05336495 100644 --- a/frontend/src/app/_data/Experiment.ts +++ b/frontend/src/app/_data/Experiment.ts @@ -16,10 +16,12 @@ export default class Experiment { public lastUpdated: Date = new Date(), public modelIds: string[] = [], - + public encodings: ColumnEncoding[] = []//[{columnName: "", columnEncoding: Encoding.Label}] ) { } + + _columnsSelected: boolean = false; } export enum NullValueOptions { @@ -67,9 +69,8 @@ export enum Encoding { } export class ColumnEncoding { - constructor ( + constructor( public columnName: string, public encoding: Encoding - ) - {} + ) { } }
\ No newline at end of file |