main
1using solidware.financials.infrastructure.eventing;
2
3namespace solidware.financials.windows.ui.events
4{
5 public class UpdateOnLongRunningProcess : Event
6 {
7 public string message { get; set; }
8 public int percent_complete { get; set; }
9 }
10}