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