Remotely/Shared/Models/CursorInfo.cs
2021-07-29 07:56:15 -07:00

20 lines
457 B
C#

using System.Drawing;
namespace Remotely.Shared.Models
{
public class CursorInfo
{
public CursorInfo(byte[] imageBytes, Point hotspot, string cssOverride = null)
{
ImageBytes = imageBytes;
HotSpot = hotspot;
CssOverride = cssOverride;
}
public byte[] ImageBytes { get; set; }
public Point HotSpot { get; set; }
public string CssOverride { get; set; }
}
}