aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_data/Dataset.ts
blob: 665df9322bdbf3217da04716a1985df400171a67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 = ''
    ) { }
}