19 lines
364 B
TypeScript
19 lines
364 B
TypeScript
/**
|
|
* Dashboard Presenter
|
|
*
|
|
* Transforms dashboard data into DTO format for presentation.
|
|
*/
|
|
|
|
import { DashboardDTO } from '../dto/DashboardDTO';
|
|
|
|
export class DashboardPresenter {
|
|
/**
|
|
* Present dashboard data as DTO
|
|
* @param data - Dashboard data
|
|
* @returns Dashboard DTO
|
|
*/
|
|
present(data: DashboardDTO): DashboardDTO {
|
|
return data;
|
|
}
|
|
}
|