Skip to content

Instantly share code, notes, and snippets.

@bbenetskyy
Created December 30, 2021 17:25
Show Gist options
  • Save bbenetskyy/42f29dd04961c44f1a75d840b64bba6b to your computer and use it in GitHub Desktop.
Save bbenetskyy/42f29dd04961c44f1a75d840b64bba6b to your computer and use it in GitHub Desktop.
public class DraggableArea
{
public DraggableArea(double x,
double y,
double width,
double height)
{
X = x;
Y = y;
Width = width;
Height = height;
}
public double X { get; }
public double Y { get; }
public double Width { get; }
public double Height { get; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment