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

14 lines
239 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace AntDesign.JsInterop
{
public class Window
{
public decimal innerHeight { get; set; }
public decimal innerWidth { get; set; }
}
}