mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 13:08:23 +08:00
18 lines
412 B
C#
18 lines
412 B
C#
namespace AntDesign.JsInterop
|
|
{
|
|
public class DomRect
|
|
{
|
|
public decimal x { get; set; }
|
|
|
|
public decimal y { get; set; }
|
|
|
|
public decimal width { get; set; }
|
|
|
|
public decimal height { get; set; }
|
|
|
|
public decimal top { get; set; }
|
|
public decimal right { get; set; }
|
|
public decimal bottom { get; set; }
|
|
public decimal left { get; set; }
|
|
}
|
|
} |