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