19 lines
217 B
TypeScript
19 lines
217 B
TypeScript
import { Expose } from 'class-transformer';
|
|
|
|
export class InstitucionesOutputDto {
|
|
@Expose()
|
|
id_institucion;
|
|
|
|
@Expose()
|
|
activo;
|
|
|
|
@Expose()
|
|
correo;
|
|
|
|
@Expose()
|
|
institucion;
|
|
|
|
@Expose()
|
|
responsable;
|
|
}
|