mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-14 17:01:18 +08:00
20 lines
515 B
C#
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|