// Setup the Invoice Status
export enum InvoiceStatus {
	Paid = 'paid',
	Unpaid = 'unpaid',
}
