5 lines
162 B
TypeScript
5 lines
162 B
TypeScript
|
|
export interface UpdateDetalleSeccionTiradaDto {
|
||
|
|
idRegPublicacionSeccion: number; // Será 0 para las nuevas secciones
|
||
|
|
idSeccion: number;
|
||
|
|
cantPag: number;
|
||
|
|
}
|