12 lines
228 B
C#
12 lines
228 B
C#
|
|
using Prism.Events;
|
|||
|
|
// ReSharper disable CheckNamespace
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Events
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Show/Hide T0 Cursor
|
|||
|
|
/// </summary>
|
|||
|
|
public class ShowT0CursorEvent : PubSubEvent<bool> { }
|
|||
|
|
}
|