EchoTex_Payroll/HRM.UI/ClientApp/src/app/app.footer.component.ts

14 lines
273 B
TypeScript
Raw Normal View History

2024-10-14 10:01:49 +06:00
import { Component } from '@angular/core';
import { ApiService } from './app.api.service';
@Component({
selector: 'app-footer',
templateUrl: './app.footer.component.html'
})
export class AppFooterComponent {
constructor(
public apiService: ApiService,
) {}
}