ymanager/webapp/src/app/vacation-info/vacation-info.component.ts @ f4bbdb70
1 |
import { Component, Input } from '@angular/core'; |
---|---|
2 |
import {LocalizationService} from '../localization/localization.service'; |
3 |
|
4 |
@Component({ |
5 |
selector: 'app-vacation-info', |
6 |
templateUrl: './vacation-info.component.html', |
7 |
styleUrls: ['./vacation-info.component.sass'] |
8 |
})
|
9 |
export class VacationInfoComponent { |
10 |
|
11 |
@Input() sickDaysRemaining: number; |
12 |
@Input() extraVacationRemaining: number; |
13 |
|
14 |
constructor(private localizationService: LocalizationService) { } |
15 |
}
|