using Prism.Events;
namespace DTS.Common.Events.Groups.GroupChannelList
{
///
/// The GroupUpdated event.
///
///
/// called when a template is selected.
///
public class GroupUpdatedEvent : PubSubEvent { }
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;
}
}
}