mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
14 lines
237 B
C#
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();
|
|
}
|
|
|
|
}
|