Changed ErrorAction enum namespace from ReC.Application.Common.Constants to ReC.Domain.Constants to better reflect its domain relevance. Removed the file's BOM. Enum members remain unchanged.
7 lines
95 B
C#
7 lines
95 B
C#
namespace ReC.Domain.Constants;
|
|
|
|
public enum ErrorAction
|
|
{
|
|
Stop = 0,
|
|
Continue = 1,
|
|
} |