aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_data/Dataset.ts
blob: aaee50eb9eda6ea77f1b830d7bb9f21d3d5f7d4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
export default class Dataset {
    constructor(
        public name: string = 'Novi izvor podataka',
        public description: string = '',
        public header: string[] = [],
        public fileId?: number,
        public extension: string = '.csv',
        public isPublic: boolean = false,
        public accessibleByLink: boolean = false,
        public dateCreated: Date = new Date(),
        public lastUpdated: Date = new Date()
    ) { }
}