Files
Toolkit2/Toolkit.Windows/Rect.cs
T
Dan Clark ebc4ce5433 WIP
2024-11-02 19:56:57 +00:00

22 lines
342 B
C#

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; }
}