6 lines
145 B
TypeScript
6 lines
145 B
TypeScript
export interface NovedadesCanillasReporteDto {
|
|
nomApe: string;
|
|
fecha: string;
|
|
detalle?: string | null;
|
|
id?: string; // Para el DataGrid
|
|
} |