sharee.bike-App/TINKLib/ViewModel/Map/IGroupFilterMapPage.cs
2021-11-07 21:28:13 +01:00

16 lines
558 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();
}
}