Files
GestionIntegralWeb/Frontend/src/models/dtos/Reportes/CanillaGananciaReporteDto.ts

8 lines
234 B
TypeScript
Raw Normal View History

export interface CanillaGananciaReporteDto {
canilla: string; // NomApe del canillita
legajo?: number | null;
francos?: number | null;
faltas?: number | null;
totalRendir?: number | null;
id?: string; // Para el DataGrid
}