import { TInvoiceTypes, TServices } from "../../types";
export interface IInvoiceInformations {
    id: string;
    invoice_type: TInvoiceTypes;
    service: TServices;
    client_name: string;
    date: string;
}
