15 lines
435 B
Plaintext
15 lines
435 B
Plaintext
using DTS.Common.Base;
|
|
using DTS.Common.Interface;
|
|
using Microsoft.Practices.Prism.Events;
|
|
|
|
namespace DTS.Common.Events
|
|
{
|
|
public class PSDReportGRMSValuesUpdatedEvent : CompositePresentationEvent<PSDReportGRMSValuesUpdatedEventArg> { }
|
|
|
|
public class PSDReportGRMSValuesUpdatedEventArg
|
|
{
|
|
public IChannelGRMSSummary[] Values { get; set; }
|
|
public IBaseViewModel ParentVM { get; set; }
|
|
}
|
|
}
|