mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
20 lines
515 B
C#
20 lines
515 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
}
|