bookfarm-frontend/src/services/models/book.ts

20 lines
376 B
TypeScript

export type Book = {
id: string;
product_title?: string;
author?: string;
resume?: string;
image_url?: string;
collection?: string;
date_de_parution?: string;
ean?: number;
editeur?: string;
format?: string;
isbn?: string;
nb_de_pages?: number;
presentation?: string | null;
width?: number;
height?: number;
depth?: number;
poids ?:number;
}