mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
17 lines
360 B
C#
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; }
|
|
}
|
|
}
|