// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. 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; } }