main
 1using MoMoney.Service.Infrastructure.Eventing;
 2
 3namespace momoney.presentation.model.eventing
 4{
 5    public class NewProjectOpened : IEvent
 6    {
 7        public NewProjectOpened(string path)
 8        {
 9            this.path = path;
10        }
11
12        public string path { private set; get; }
13    }
14}