Betterzon/Backend/src/models/prices/prices.interface.ts

6 lines
96 B
TypeScript

import {Price} from './price.interface';
export interface Prices {
[key: number]: Price;
}