src/app/interfaces/printing-house-prices.ts
Printing House Item Interface
Properties |
articles |
articles:
|
Type : PrintingHouseArticle[]
|
Articles |
name |
name:
|
Type : PRINTTYPE
|
Price type |
import { PRINTTYPE } from '../enums/print-type';
import { PrintingHouseArticle } from './printing-house-article';
/**
* Printing House Item Interface
* @author Daniel Sogl
*/
export interface PrintingHousePrices {
/** Price type */
name: PRINTTYPE;
/** Articles */
articles: PrintingHouseArticle[];
}