Add ErrorAction enum for error handling actions

Introduced the ErrorAction enum in the ReC.Application.Common.Constants namespace with Stop and Continue values to standardize error response actions across the application.
This commit is contained in:
2025-12-12 12:55:57 +01:00
parent bc700e2cd2
commit 26f2da1313

View File

@@ -0,0 +1,7 @@
namespace ReC.Application.Common.Constants;
public enum ErrorAction
{
Stop = 0,
Continue = 1,
}