mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
21 lines
446 B
C#
21 lines
446 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.AspNetCore.Components.Web;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class TransferScrollArgs
|
|
{
|
|
public string Direction { get; private set; }
|
|
|
|
public EventArgs Args { get; private set; }
|
|
|
|
public TransferScrollArgs(string direction, EventArgs e)
|
|
{
|
|
this.Direction = direction;
|
|
this.Args = e;
|
|
}
|
|
}
|
|
}
|