ymanager/frontend/src/app/off-days-info/off-days-info.component.ts @ b287ef3e
1 |
import { Component, Input } from '@angular/core'; |
---|---|
2 |
|
3 |
@Component({ |
4 |
selector: 'app-off-days-info', |
5 |
templateUrl: './off-days-info.component.html', |
6 |
styleUrls: ['./off-days-info.component.sass'] |
7 |
})
|
8 |
export class OffDaysInfoComponent { |
9 |
|
10 |
@Input() sickDaysRemaining: number; |
11 |
@Input() sickDaysUsed: number; |
12 |
|
13 |
@Input() extraVacationRemaining: number; |
14 |
|
15 |
constructor() { } |
16 |
}
|