Files
ISA-Frontend/apps/isa-app/src/swagger/cat/models/price-value-dto.ts
Lorenz Hilpert f37dfd41f1 Merged PR 1813: Strukturanpassung
Related work items: #4832
2024-10-16 14:07:57 +00:00

8 lines
188 B
TypeScript

/* tslint:disable */
import { TouchedBase } from './touched-base';
export interface PriceValueDTO extends TouchedBase {
currency?: string;
currencySymbol?: string;
value?: number;
}