mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
export default interface ProductModel {
|
|
name: string;
|
|
url: string;
|
|
description: string;
|
|
themeColor: string;
|
|
}
|