diff options
Diffstat (limited to 'frontend/src/app/_data/Predictor.ts')
| -rw-r--r-- | frontend/src/app/_data/Predictor.ts | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/frontend/src/app/_data/Predictor.ts b/frontend/src/app/_data/Predictor.ts new file mode 100644 index 00000000..379526ec --- /dev/null +++ b/frontend/src/app/_data/Predictor.ts @@ -0,0 +1,9 @@ +export default class Dataset { +    constructor( +        public name: string = 'Novi izvor podataka', +        public description: string = '', +        public inputs: string[] = [], +        public output: string = '', +        public dateCreated: Date = new Date() +    ) { } +}
\ No newline at end of file | 
