blob: 2789d9c51682c078819a69f3165fd05d2a4cb03e [file] [log] [blame]
#pragma once
#include <cstdint>
namespace ipmi_flash
{
/** The status of the update mechanism or the verification mechanism */
enum class ActionStatus : std::uint8_t
{
running = 0,
success = 1,
failed = 2,
unknown = 3,
};
} // namespace ipmi_flash