export interface IMoney_DTO { amount: number; precision: number; currency: string; } export interface IMoney_Response_DTO extends IMoney_DTO {}