This commit is contained in:
Dan Clark
2024-11-02 19:56:57 +00:00
parent 862e7b2e34
commit ebc4ce5433
16 changed files with 442 additions and 4 deletions
+22
View File
@@ -0,0 +1,22 @@
namespace Toolkit.Windows;
public record Rect
{
public Rect()
{
}
public Rect(int x, int y, int width, int height)
{
X = x;
Y = y;
Width = width;
Height = height;
}
public int X { get; }
public int Y { get; }
public int Width { get; }
public int Height { get; }
}