using Microsoft.Practices.Prism.Events; using Microsoft.Practices.Prism.Regions; namespace DTS.Common.Events.RegionOfInterest.RegionOfInterestChannels { public class RegionOfInterestChannelsSelectedEvent : CompositePresentationEvent { } public class RegionOfInterestChannelsSelectedEventArgs { public string RegionOfInterestSuffix { get; private set; } public string[] ChannelNames { get; private set; } public object Consumer { get; private set; } public RegionOfInterestChannelsSelectedEventArgs(string roiSuffix, string[] selectedChannelNames, object o) { RegionOfInterestSuffix = roiSuffix; ChannelNames = selectedChannelNames; Consumer = o; } } }