ant-design-blazor/components/core/JsInterop/DomRect.cs

18 lines
412 B
C#
Raw Normal View History

namespace AntDesign.JsInterop
2019-12-17 17:53:25 +08:00
{
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; }
}
}