mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-03 12:37:40 +08:00
aeae95ef43
* fix(module: transfer): add `ListStyle` to custom the css for columns. * pass TransferDirection
16 lines
351 B
C#
16 lines
351 B
C#
namespace AntDesign
|
|
{
|
|
public class TransferSearchArgs
|
|
{
|
|
public TransferDirection Direction { get; private set; }
|
|
|
|
public string Value { get; private set; }
|
|
|
|
public TransferSearchArgs(TransferDirection direction, string value)
|
|
{
|
|
Direction = direction;
|
|
Value = value;
|
|
}
|
|
}
|
|
}
|