11 lines
235 B
C#
11 lines
235 B
C#
|
|
using Microsoft.Practices.Prism.Events;
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Refresh test with ID
|
|||
|
|
/// </summary>
|
|||
|
|
public class RefreshTestRequestEvent : CompositePresentationEvent<string> { }
|
|||
|
|
}
|