main
 1using presentation.windows.common;
 2
 3namespace presentation.windows.events
 4{
 5    public class UpdateOnLongRunningProcess : IEvent
 6    {
 7        public string message { get; set; }
 8        public int percent_complete { get; set; }
 9    }
10}