ant-design-blazor/components/transfer/TransferSearchArgs.cs
ElDiddi 2cd069a6ac fix(module: transfer): fixed multiple issues #711 #645 (#712)
* fix(module: transfer): Fixed multiple issues

fix(module: transfer): Added localization support (LocaleProvider.CurrentLocale.Transfer).  Property name is 'Locale'. #645
fix(module: transfer): Fixed no data image.
fix(module: transfer): Header alignment
fix(module: transfer): Fixed header count suffix
fix(module: transfer): Fixed a bug in the checkbox state if there is 'no item' or no 'not deactivated' item in the selection list.
fix(module: transfer): Duplicate item filter bug fixed (#711)
feat(module: transfer): Added clear button to the filter input
feat(module: transfer): Filter option is now InvariantCultureIgnoreCase (please change it if there is a problem with chinese language)
style(module: transfer): removed unused usings, fixed some style issues
docs(module: transfer): Added Local Property description - Please take a look at the chinese version (Google translate)

* Update index.zh-CN.md

Co-authored-by: Lars Diederich <diederich@evodata.de>
Co-authored-by: James Yeung <shunjiey@hotmail.com>
2020-10-24 13:39:02 +08:00

16 lines
329 B
C#

namespace AntDesign
{
public class TransferSearchArgs
{
public string Direction { get; private set; }
public string Value { get; private set; }
public TransferSearchArgs(string direction, string value)
{
Direction = direction;
Value = value;
}
}
}