enum ApprovalProcess {
waiting('waiting'),
done('done');
final String process;
const ApprovalProcess(this.process);
}