import { KartDetails } from './kart-details'; import { Pagamento } from './pagamento'; import { Users } from './users'; export interface Kart { id?: string; pagamento?: (Pagamento | null); Data: Date; Totale?: number | null; Spese?: number | null; Note?: (string | null); subTotale?: number | null; Mod_Pag?: (string | null); kartDetails: KartDetails[]; Contrassegno?: number | null; user?: (Users | null); volume?: number; }