aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_data/Notification.ts
blob: 94a3be1dcad3bc85a4baaaf11604b2cc4e65f8b9 (plain) (blame)
1
2
3
4
5
6
7
8
export default class Notification {
    constructor(
        public title: string = 'Treniranje u toku...',
        public id: string = '042',
        public progress: number = 0.5,
        public hasProgress: boolean = false
    ) { }
}