20 lines
583 B
Plaintext
20 lines
583 B
Plaintext
using DTS.Common.Interface.Channels;
|
|
using Microsoft.Practices.Prism.Events;
|
|
|
|
namespace DTS.Common.Events.Groups.GroupChannelList
|
|
{
|
|
public class GroupChannelDeleteRequestEvent : CompositePresentationEvent<GroupChannelDeleteRequestEventArgs> { }
|
|
|
|
public class GroupChannelDeleteRequestEventArgs
|
|
{
|
|
public object Page { get; }
|
|
|
|
public IGroupChannel Channel { get; }
|
|
public GroupChannelDeleteRequestEventArgs(object page, IGroupChannel channel)
|
|
{
|
|
Page = page;
|
|
Channel = channel;
|
|
}
|
|
}
|
|
}
|