using Microsoft.Practices.Prism.Events; namespace DTS.Common.Events.Groups.GroupChannelList { /// /// The GroupUpdated event. /// /// /// called when a template is selected. /// public class GroupUpdatedEvent: CompositePresentationEvent { } public class GroupUpdatedEventArgs { public object Page { get; } public enum Status { ChannelsInserted, AssignmentsMade } public Status UpdateStatus { get; } public GroupUpdatedEventArgs(object page, Status status) { Page = page; UpdateStatus = status; } } }