Files
nuxtfiber/types/banner.ts
Beyhan Oğur 7b2b27a42c first commit
2026-04-26 22:18:17 +03:00

32 lines
584 B
TypeScript

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;
}