feat(finance): Added notes field to IInvoice interface

This commit is contained in:
2024-07-26 16:51:33 +02:00
parent 6095e0ea5c
commit f9c7f90d73
3 changed files with 7 additions and 1 deletions

View File

@ -35,5 +35,6 @@ export interface IInvoice {
items: IInvoiceItem[];
};
};
notes: string[];
paymentOptions?: finance.IPaymentOptionInfo;
}