Explicitly set ErrorAction enum underlying type to byte

Changed ErrorAction enum declaration to use byte as its underlying type for improved memory efficiency and clarity.
This commit is contained in:
2025-12-15 14:28:13 +01:00
parent a24ec1ab3e
commit 90ee3f6a5d

View File

@@ -1,6 +1,6 @@
namespace ReC.Domain.Constants;
public enum ErrorAction
public enum ErrorAction : byte
{
Stop = 0,
Continue = 1,