aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_data/Dataset.ts
blob: c5b569578000b608142339b6357537697e818d80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export default class Dataset {
    _id: string = '';
    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(),
        public username: string = '',
        public delimiter: string = '',
        public hasHeader: boolean = true
    ) { }
}