namespace ReC.Domain.Constants;
///
/// Represents the general outcome of an operation, independent of any specific technology or protocol.
///
/// Technology-specific details (e.g., HTTP status codes) are stored separately
/// in the RESULT_INFO and RESULT_INFO_DETAIL fields.
///
///
///
public enum RecStatus : byte
{
///
/// Indicates that the operation completed successfully (value 0).
///
OK = 0,
///
/// Indicates that the operation failed (value 1).
/// When set, the RESULT_ERROR field should contain the error details.
///
Error = 1
}