aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_data/Predictor.ts
blob: 8aa2b6cb53825cf47ee336cf582613d89f02427e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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(),
        public uploaderId: string = ''
    ) { }
}