aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_data/Predictor.ts
blob: 7e902eae12452d493254ab980e8f88198e87905f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
export default class Predictor {
    _id: string = '';
    constructor(
        public name: string = 'Novi prediktor',
        public description: string = '',
        public inputs: string[] = [],
        public output: string = '',
        public isPublic: boolean = false,
        public accessibleByLink: boolean = false,
        public dateCreated: Date = new Date()
    ) { }
}