Added a translation service that will update the base language conversions for each supported language.
11 lines
174 B
C#
11 lines
174 B
C#
namespace e_suite.Workflow.Core.Enums;
|
|
|
|
public enum ApprovalVerdict
|
|
{
|
|
None,
|
|
Pending,
|
|
Approved,
|
|
ApprovedWithComments,
|
|
Rejected,
|
|
Reviewed
|
|
} |