8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
|
|
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
|
||
|
|
}
|