Files
DP44/Common/DTS.Common/.svn/pristine/06/06d44ee46dce998391d4ff5e47fc306ce8ef0bb7.svn-base

10 lines
224 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
namespace DTS.Common.Interface.Pagination
{
public interface IFilterableListView
{
void Filter(object tag, string term);
void ClearAllFilters();
string ListViewId { get; }
}
}