aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_data/Predictor.ts
blob: 05b993f1ca2c04d097a397d491646b5677bfb68a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export default class Predictor {
    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()
    ) { }
}