/**
 * Email Status
 *
 * @description The status of the email for the invoice
 */
export enum EmailStatus {
	NotSet = 'NotSet',
	NeedToSend = 'NeedToSend',
	EmailSent = 'EmailSent',
}
