Presupuestador_web/shared/lib/contexts/common/application/dto/IMoney.dto.ts

8 lines
151 B
TypeScript
Raw Normal View History

2024-04-23 15:29:38 +00:00
export interface IMoney_DTO {
amount: number;
precision: number;
currency: string;
}
export interface IMoney_Response_DTO extends IMoney_DTO {}