mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-12 11:55:24 +08:00
a2787f5673
* transfer_brancn * fix: transfer demos and empty status Co-authored-by: ElderJames <shunjiey@hotmail.com>
20 lines
407 B
C#
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;
|
|
}
|
|
}
|
|
}
|