mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-22 20:42:24 +00:00
21 lines
402 B
C#
21 lines
402 B
C#
namespace Lantean.QBTMudBlade.Interop
|
|
{
|
|
public class BoundingClientRect
|
|
{
|
|
public int Bottom { get; set; }
|
|
|
|
public int Top { get; set; }
|
|
|
|
public int Left { get; set; }
|
|
|
|
public int Right { get; set; }
|
|
|
|
public int Width { get; set; }
|
|
|
|
public int Height { get; set; }
|
|
|
|
public int X { get; set; }
|
|
|
|
public int Y { get; set; }
|
|
}
|
|
} |