first commit
This commit is contained in:
31
types/banner.ts
Normal file
31
types/banner.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
export interface Banner {
|
||||
id: number;
|
||||
color: string;
|
||||
title: string;
|
||||
text1?: string;
|
||||
text2?: string;
|
||||
text4?: string;
|
||||
text5?: string;
|
||||
image: string;
|
||||
is_active: boolean;
|
||||
width?: number;
|
||||
height?: number;
|
||||
quality?: number;
|
||||
format?: string;
|
||||
created_at?: string;
|
||||
updated_at?: string;
|
||||
}
|
||||
|
||||
export interface ProductTree {
|
||||
id: number;
|
||||
title: string;
|
||||
button: string;
|
||||
content: string;
|
||||
price: number;
|
||||
images: string;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
is_active: boolean;
|
||||
is_front: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user