10 lines
224 B
Plaintext
10 lines
224 B
Plaintext
namespace DTS.Common.Interface.Pagination
|
|
{
|
|
public interface IFilterableListView
|
|
{
|
|
void Filter(object tag, string term);
|
|
void ClearAllFilters();
|
|
string ListViewId { get; }
|
|
}
|
|
}
|