diff --git a/src/ReC.Application/Common/Constants/ErrorAction.cs b/src/ReC.Application/Common/Constants/ErrorAction.cs new file mode 100644 index 0000000..3c88f86 --- /dev/null +++ b/src/ReC.Application/Common/Constants/ErrorAction.cs @@ -0,0 +1,7 @@ +namespace ReC.Application.Common.Constants; + +public enum ErrorAction +{ + Stop = 0, + Continue = 1, +} \ No newline at end of file