From 0fc1dc0cb3be8376118b4a48e3db57ad05b9216b Mon Sep 17 00:00:00 2001 From: david Date: Sat, 4 Apr 2026 20:40:05 +0200 Subject: [PATCH] Limpieza --- modules/core/src/common/dto/index.ts | 1 - modules/core/src/common/dto/tax-type.dto.ts | 11 ----------- 2 files changed, 12 deletions(-) delete mode 100644 modules/core/src/common/dto/tax-type.dto.ts diff --git a/modules/core/src/common/dto/index.ts b/modules/core/src/common/dto/index.ts index b3617d3e..4fc6506b 100644 --- a/modules/core/src/common/dto/index.ts +++ b/modules/core/src/common/dto/index.ts @@ -6,4 +6,3 @@ export * from "./list-view.response.dto"; export * from "./metadata.dto"; export * from "./percentage.dto"; export * from "./quantity.dto"; -export * from "./tax-type.dto"; diff --git a/modules/core/src/common/dto/tax-type.dto.ts b/modules/core/src/common/dto/tax-type.dto.ts deleted file mode 100644 index 08e96796..00000000 --- a/modules/core/src/common/dto/tax-type.dto.ts +++ /dev/null @@ -1,11 +0,0 @@ -import type { PercentageDTO } from "./percentage.dto"; - -export interface ITaxTypeDTO { - id: string; - typecode: string; - taxslug: string; - taxrate: PercentageDTO; - equivalencesurcharge: PercentageDTO; -} - -export interface ITaxTypeResponseDTO extends ITaxTypeDTO {}