// Copyright Epic Games, Inc. All Rights Reserved.
namespace EpicGames.Horde.Jobs
{
///
/// Outcome for a jobstep
///
public enum JobStepOutcome
{
///
/// Outcome is not known
///
Unspecified = 0,
///
/// Step failed
///
Failure = 1,
///
/// Step completed with warnings
///
Warnings = 2,
///
/// Step succeeded
///
Success = 3
}
}