ant-design-blazor/components/transfer/TransferSearchArgs.cs
James Yeung aeae95ef43
fix(module: transfer): add ListStyle to custom the css for columns (#3139)
* fix(module: transfer): add `ListStyle` to custom the css for columns.

* pass TransferDirection
2023-02-26 23:25:04 +08:00

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;
}
}
}