blob: c505d399b06f3817eb120f30ca47ff545ace90ef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
export default class Notification {
_id: string = '';
constructor(
public title: string = 'Treniranje u toku...',
public id: string = '042',
public progress: number = 0.5,
public hasProgress: boolean = false
) { }
}
|