aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_data/Predictor.ts
blob: 77d9498b7d949932f03909f311fcebbb1d874cd8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export default class Dataset {
    constructor(
        public name: string = 'Novi izvor podataka',
        public description: string = '',
        public columns: string[] = [],
        public isPublic: boolean = false,
        public accessibleByLink: boolean = false,
        public dateCreated: Date = new Date()
    ) { }
}