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

17 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Text.Json.Serialization;
namespace AntDesign.JsInterop
{
public class Window
{
[JsonPropertyName("innerWidth")]
public decimal InnerWidth { get; set; }
[JsonPropertyName("innerHeight")]
public decimal InnerHeight { get; set; }
}
}