ant-design-blazor/components/transfer/TransferScrollArgs.cs

21 lines
446 B
C#
Raw Normal View History

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;
}
}
}