mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
23 lines
544 B
C#
23 lines
544 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class TransferChangeArgs
|
|
{
|
|
public string[] TargetKeys { get; private set; }
|
|
|
|
public string Direction { get; private set; }
|
|
|
|
public string[] MoveKeys { get; private set; }
|
|
|
|
public TransferChangeArgs(string[] targetKeys, string direction, string[] moveKeys)
|
|
{
|
|
this.TargetKeys = targetKeys;
|
|
this.Direction = direction;
|
|
this.MoveKeys = moveKeys;
|
|
}
|
|
}
|
|
}
|