diff options
Diffstat (limited to 'frontend/src/app/_data/Experiment.ts')
| -rw-r--r-- | frontend/src/app/_data/Experiment.ts | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/frontend/src/app/_data/Experiment.ts b/frontend/src/app/_data/Experiment.ts new file mode 100644 index 00000000..706231c7 --- /dev/null +++ b/frontend/src/app/_data/Experiment.ts @@ -0,0 +1,12 @@ +export default class Experiment { +    _id: string = ''; +    constructor( +        public name: string = 'Novi experiment', +        public description: string = '', +        public datasetId: string = '', +        public inputColumns: string[] = [], +        public columnToPredict: string = '', +        public dateCreated: Date = new Date(), +        public lastUpdated: Date = new Date() +    ) { } +}
\ No newline at end of file | 
