namespace ECMJobRunner.Domain.ValueObjects;
///
/// Represents the result type of a job execution.
///
public enum ResultType : byte
{
///
/// The operation completed successfully.
///
Ok = 0,
///
/// The operation encountered an error.
///
Error = 1,
///
/// The operation completed with warnings.
///
Warning = 2,
///
/// The operation result is unknown.
///
Unknown = 255
}