InvoiceType.java

package com.stocks.stockease.invoice;

/** Whether an invoice records goods bought from a supplier or sold to a customer. */
public enum InvoiceType {
    PURCHASE,
    SALE
}