added some more entities for work demo

This commit is contained in:
Sascha Kühl
2025-06-26 16:03:28 +02:00
parent 4dcbf009da
commit 9f718b7e36
15 changed files with 258 additions and 4 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef JOB_MODE_HPP
#define JOB_MODE_HPP
#include "matador/utils/enum_mapper.hpp"
#include <cstdint>
namespace work::models::jobs {
enum class JobMode : uint8_t {
Background,
Foreground
};
static const matador::utils::enum_mapper<JobMode> JobModeEnum({
{JobMode::Background, "Background"},
{JobMode::Foreground, "Foreground"}
});
}
#endif //JOB_MODE_HPP