using Prism.Events; namespace DTS.Common.Events { /// /// Event to inform app that it should mark itself busy or available /// /// /// /// public class PageSelectionChanged : PubSubEvent { } public class PageSelectionChangedArg { public object Page { get; } public int Count { get; } public PageSelectionChangedArg(int count, object page) { Page = page; Count = count; } } }