2025-02-10 22:48:53 +01:00
|
|
|
import { IImg } from "./GlobalStore"
|
2025-02-05 12:13:36 +01:00
|
|
|
import { ICollana } from "./Products"
|
2025-02-03 17:18:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
export interface ICatalog {
|
2025-02-10 22:48:53 +01:00
|
|
|
_id: string
|
2025-02-03 17:18:33 +01:00
|
|
|
idapp: string
|
|
|
|
|
active?: boolean
|
2025-02-10 22:48:53 +01:00
|
|
|
versione_perstampa?: boolean
|
2025-02-03 17:18:33 +01:00
|
|
|
title: string
|
2025-02-10 22:48:53 +01:00
|
|
|
foto_collana?: IImg,
|
2025-02-05 12:13:36 +01:00
|
|
|
idCollane?: number[]
|
2025-02-10 22:48:53 +01:00
|
|
|
editore?: string[]
|
2025-02-05 12:13:36 +01:00
|
|
|
collana_info?: ICollana
|
2025-02-03 17:18:33 +01:00
|
|
|
descr_introduttiva?: string
|
2025-02-05 12:13:36 +01:00
|
|
|
idPageAssigned?: string
|
2025-02-03 17:18:33 +01:00
|
|
|
referenti?: string[]
|
2025-02-10 22:48:53 +01:00
|
|
|
img_bordata?: IImg,
|
|
|
|
|
img_intro?: IImg,
|
|
|
|
|
pagina_introduttiva_sfondo_nero?: boolean
|
2025-02-03 17:18:33 +01:00
|
|
|
|
2025-02-10 22:48:53 +01:00
|
|
|
pdf_generato?: string
|
|
|
|
|
data_generato?: Date
|
|
|
|
|
pdf_online?: string
|
|
|
|
|
data_online?: Date
|
2025-02-03 17:18:33 +01:00
|
|
|
|
|
|
|
|
date_created?: Date,
|
|
|
|
|
date_updated?: Date,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface ICatalogState {
|
2025-02-05 12:13:36 +01:00
|
|
|
catalogs?: ICatalog[]
|
2025-02-03 17:18:33 +01:00
|
|
|
}
|