import {Price} from './price.interface';

export interface Prices {
    [key: number]: Price;
}