Remotely/Desktop.Core/Interfaces/ICursorIconWatcher.cs
2021-07-29 07:56:44 -07:00

14 lines
237 B
C#

using Remotely.Shared.Models;
using System;
namespace Remotely.Desktop.Core.Interfaces
{
public interface ICursorIconWatcher
{
event EventHandler<CursorInfo> OnChange;
CursorInfo GetCurrentCursor();
}
}