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