Remotely/Desktop.Shared/Abstractions/ICursorIconWatcher.cs
2024-07-16 09:25:15 -07:00

12 lines
286 B
C#

using Remotely.Shared.Models;
namespace Remotely.Desktop.Shared.Abstractions;
public interface ICursorIconWatcher
{
[Obsolete("This should be replaced with a message published by IMessenger.")]
event EventHandler<CursorInfo> OnChange;
CursorInfo GetCurrentCursor();
}