Browse Source

ADD: [manufacturer] dto

portowyi 2 năm trước cách đây
mục cha
commit
a61fe2df8a
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  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;
+}