Files
DP44/Common/DTS.CommonCore/.svn/pristine/06/06d44ee46dce998391d4ff5e47fc306ce8ef0bb7.svn-base
2026-04-17 14:55:32 -04:00

10 lines
224 B
Plaintext

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