summaryrefslogtreecommitdiff
path: root/product/Presentation/Model/eventing/StartedRunningCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'product/Presentation/Model/eventing/StartedRunningCommand.cs')
-rw-r--r--product/Presentation/Model/eventing/StartedRunningCommand.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/product/Presentation/Model/eventing/StartedRunningCommand.cs b/product/Presentation/Model/eventing/StartedRunningCommand.cs
new file mode 100644
index 0000000..86c7ac1
--- /dev/null
+++ b/product/Presentation/Model/eventing/StartedRunningCommand.cs
@@ -0,0 +1,14 @@
+using MoMoney.Service.Infrastructure.Eventing;
+
+namespace momoney.presentation.model.events
+{
+ public class StartedRunningCommand : IEvent
+ {
+ public StartedRunningCommand(object running_command)
+ {
+ running_action = running_command;
+ }
+
+ public object running_action { get; private set; }
+ }
+} \ No newline at end of file