src/app/core/models/product_property.ts
id |
id: |
Defined in src/app/core/models/product_property.ts:2
|
product_id |
product_id: |
Defined in src/app/core/models/product_property.ts:3
|
property_id |
property_id: |
Defined in src/app/core/models/product_property.ts:4
|
property_name |
property_name: |
Defined in src/app/core/models/product_property.ts:6
|
value |
value: |
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;
}