11 lines
238 B
C#
11 lines
238 B
C#
using Microsoft.Practices.Prism.Events;
|
|
|
|
namespace DTS.Common.Events
|
|
{
|
|
public class NavigateToDashboardEvent : CompositePresentationEvent<NavigateToDashboardArg> { }
|
|
|
|
public class NavigateToDashboardArg
|
|
{
|
|
}
|
|
}
|