src/app/core/models/product_property.ts
Properties |
| id |
id:
|
Type : number
|
|
Defined in src/app/core/models/product_property.ts:2
|
| product_id |
product_id:
|
Type : number
|
|
Defined in src/app/core/models/product_property.ts:3
|
| property_id |
property_id:
|
Type : number
|
|
Defined in src/app/core/models/product_property.ts:4
|
| property_name |
property_name:
|
Type : string
|
|
Defined in src/app/core/models/product_property.ts:6
|
| value |
value:
|
Type : string
|
|
Defined in src/app/core/models/product_property.ts:5
|
export class ProductProperty {
id: number;
product_id: number;
property_id: number;
value: string;
property_name: string;
}