main
1using MoMoney.Service.Infrastructure.Eventing;
2
3namespace MoMoney.Presentation.Model.messages
4{
5 public class FinishedRunningCommand : IEvent
6 {
7 public FinishedRunningCommand(object running_command)
8 {
9 completed_action = running_command;
10 }
11
12 public object completed_action { get; private set; }
13 }
14}