ant-design-blazor/components/core/JsInterop/EventArg/MouseEvent.cs

12 lines
200 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace AntDesign.core.JsInterop.EventArg
{
public class MouseEvent
{
public int ScreenX { get; set; }
}
}