Parcourir la source

ADD: [manufacturer] dto

portowyi il y a 2 ans
Parent
commit
a61fe2df8a
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  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;
+}