using System.Collections.Generic; using TINK.Model; namespace TINK.ViewModel.Settings { public interface IGroupFilterSettings : IDictionary { /// Performs filtering on response-group. IEnumerable DoFilter(IEnumerable filter = null); } }