sharee.bike-App/TINKLib/ViewModel/Map/IGroupFilterMapPage.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

16 lines
525 B
C#

using System.Collections.Generic;
using TINK.Model;
namespace TINK.ViewModel.Map
{
/// <summary> Interface for filtering. </summary>
/// <remarks> Holds a dictionary of filters which might or might not be appield depending on filter state.</remarks>
public interface IGroupFilterMapPage : IDictionary<string /* Filter*/, FilterState /* on or off*/>
{
/// <summary> Performs filtering on response-group. </summary>
IEnumerable<string> DoFilter(IEnumerable<string> filter = null);
IList<string> GetGroup();
}
}