This commit is contained in:
David Arranz 2026-04-04 20:40:05 +02:00
parent 2202dfd9f0
commit 0fc1dc0cb3
2 changed files with 0 additions and 12 deletions

View File

@ -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";

View File

@ -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 {}