ant-design-blazor/components/transfer/TransferSearchArgs.cs
2020-05-29 00:33:49 +08:00

20 lines
407 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace AntDesign
{
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;
}
}
}