21 lines
329 B
C#
21 lines
329 B
C#
|
|
namespace Microsoft.Maui.Platform.Linux.Services;
|
||
|
|
|
||
|
|
public struct AccessibleRect
|
||
|
|
{
|
||
|
|
public int X { get; set; }
|
||
|
|
|
||
|
|
public int Y { get; set; }
|
||
|
|
|
||
|
|
public int Width { get; set; }
|
||
|
|
|
||
|
|
public int Height { get; set; }
|
||
|
|
|
||
|
|
public AccessibleRect(int x, int y, int width, int height)
|
||
|
|
{
|
||
|
|
X = x;
|
||
|
|
Y = y;
|
||
|
|
Width = width;
|
||
|
|
Height = height;
|
||
|
|
}
|
||
|
|
}
|