import { BuyableType } from "./buyable.types"; export interface BuyableDTO { type: BuyableType; amount: number; name: string; description: string; inclusions: string[]; } export interface BuyableInInvoiceDTO { type: BuyableType; name: string; description: string; inclusions: string[]; }