mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
17 lines
347 B
C#
17 lines
347 B
C#
namespace Lantean.QBTMud.Interop
|
|
{
|
|
public class BoundingClientRect : ClientSize
|
|
{
|
|
public double Bottom { get; set; }
|
|
|
|
public double Top { get; set; }
|
|
|
|
public double Left { get; set; }
|
|
|
|
public double Right { get; set; }
|
|
|
|
public double X { get; set; }
|
|
|
|
public double Y { get; set; }
|
|
}
|
|
} |