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