import { Collection } from "@repo/rdx-utils"; import { InvoiceTax } from "./invoice-tax"; export interface InvoiceTaxesProps { items?: InvoiceTax[]; } export class InvoiceTaxes extends Collection { constructor(props: InvoiceTaxesProps) { const { items = [] } = props; super(items); } public static create(props: InvoiceTaxesProps): InvoiceTaxes { return new InvoiceTaxes(props); } }