ant-design-blazor/components/transfer/TransferSearchArgs.cs
颢源 a2787f5673 feat: add transfer (#148)
* transfer_brancn

* fix: transfer demos and empty status

Co-authored-by: ElderJames <shunjiey@hotmail.com>
2020-05-26 15:21:47 +08:00

20 lines
407 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace AntBlazor
{
public class TransferSearchArgs
{
public string Direction { get; private set; }
public string Value { get; private set; }
public TransferSearchArgs(string direction, string value)
{
this.Direction = direction;
this.Value = value;
}
}
}