mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
12 lines
200 B
C#
12 lines
200 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign.core.JsInterop.EventArg
|
|
{
|
|
public class MouseEvent
|
|
{
|
|
public int ScreenX { get; set; }
|
|
}
|
|
}
|