diff --git a/CMakeLists.txt b/CMakeLists.txt
index a6c978bb8f90be6c505788c684b0ad8563498f72..cd9638ba8f06f3a897d8957a8088c24d72e62599 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -23,7 +23,7 @@ add_library(common OBJECT
         src/Services/MemoryManagementService.cpp
         src/Services/ParameterService.cpp
         src/Services/RequestVerificationService.cpp
-        src/Services/TestService.cpp)
+        src/Services/TestService.cpp inc/Services/EventActionService.hpp src/Services/EventActionService.cpp)
 
 # Specify the .cpp files for the executables
 add_executable(ecss_services
diff --git a/inc/Services/EventActionService.hpp b/inc/Services/EventActionService.hpp
new file mode 100644
index 0000000000000000000000000000000000000000..2697a447400fc08b1dc27c4a3254bd6c9df5a918
--- /dev/null
+++ b/inc/Services/EventActionService.hpp
@@ -0,0 +1,16 @@
+#ifndef ECSS_SERVICES_EVENTACTIONSERVICE_HPP
+#define ECSS_SERVICES_EVENTACTIONSERVICE_HPP
+
+#include "Service.hpp"
+
+
+class EventActionService : public Service {
+public:
+	EventActionService(){
+		serviceType = 19;
+	}
+
+	
+
+};
+#endif //ECSS_SERVICES_EVENTACTIONSERVICE_HPP
diff --git a/src/Services/EventActionService.cpp b/src/Services/EventActionService.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..0beb4895f79c208704892a6127fd74f7cf4bf4d1
--- /dev/null
+++ b/src/Services/EventActionService.cpp
@@ -0,0 +1,4 @@
+#include "Services/EventActionService.hpp"
+#include "Message.hpp"
+#include "MessageParser.hpp"
+