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

6 lines
145 B
TypeScript
Raw Normal View History

export interface NovedadesCanillasReporteDto {
nomApe: string;
fecha: string;
detalle?: string | null;
id?: string; // Para el DataGrid
}