mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
25 lines
573 B
C#
25 lines
573 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
}
|
|
}
|