Files
TheXamlGuy.TaskbarGroup/TheXamlGuy.TaskbarGroup.Core/TaskbarButtonBounds.cs
T
dan_clark@outlook.com 2ac0e3ed26 project
2022-03-23 15:44:32 +00:00

24 lines
471 B
C#

namespace TheXamlGuy.TaskbarGroup.Core
{
public record TaskbarButtonBounds
{
public TaskbarButtonBounds()
{
}
public TaskbarButtonBounds(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; }
}
}