Changed ErrorAction enum declaration to use byte as its underlying type for improved memory efficiency and clarity.
7 lines
102 B
C#
7 lines
102 B
C#
namespace ReC.Domain.Constants;
|
|
|
|
public enum ErrorAction : byte
|
|
{
|
|
Stop = 0,
|
|
Continue = 1,
|
|
} |