sharee.bike-App/TINKLib/ViewModel/Map/IGroupFilterMapPage.cs

16 lines
525 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
using System.Collections.Generic;
using TINK.Model;
namespace TINK.ViewModel.Map
{
2022-09-06 16:08:19 +02:00
/// <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);
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
IList<string> GetGroup();
}
2021-05-13 20:03:07 +02:00
}