Explorar el Código

ADD: [manufacturer] dto

portowyi hace 2 años
padre
commit
a61fe2df8a
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      src/manufacturer/dto/manufacturer.dto.ts

+ 5 - 0
src/manufacturer/dto/manufacturer.dto.ts

@@ -0,0 +1,5 @@
+export class ManufacturerDto {
+  id: string;
+  name: string;
+  code: string;
+}