ant-design-blazor/components/transfer/TransferSelectChangeArgs.cs
颢源 a2787f5673 feat: add transfer (#148)
* transfer_brancn

* fix: transfer demos and empty status

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-05-26 15:21:47 +08:00

20 lines
515 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace AntBlazor
{
public class TransferSelectChangeArgs
{
public string[] SourceSelectedKeys { get; private set; }
public string[] TargetSelectedKeys { get; private set; }
public TransferSelectChangeArgs(string[] sourceSelectedKeys, string[] targetSelectedKeys)
{
this.SourceSelectedKeys = sourceSelectedKeys;
this.TargetSelectedKeys = targetSelectedKeys;
}
}
}