mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
29 lines
838 B
C#
29 lines
838 B
C#
using System.Collections.Generic;
|
|
using TINK.Model;
|
|
using Xamarin.Forms;
|
|
|
|
namespace TINK.ViewModel.Map
|
|
{
|
|
/// <summary> Holds an empty filter object.</summary>
|
|
/// <remarks>Old name: EmptyMapPageFilter</remarks>
|
|
public class EmptyToggleViewModel : ITinkKonradToggleViewModel
|
|
{
|
|
/// <summary> Holds the map page filter.</summary>
|
|
public IGroupFilterMapPage FilterDictionary => new GroupFilterMapPage();
|
|
|
|
/// <summary> Active filter</summary>
|
|
public string CurrentFitler => string.Empty;
|
|
|
|
public bool IsTinkEnabled => false;
|
|
|
|
public Color TinkColor => Color.Default;
|
|
|
|
public bool IsKonradEnabled => false;
|
|
|
|
public Color KonradColor => Color.Default;
|
|
|
|
public bool IsToggleVisible => false;
|
|
|
|
public string CurrentFilter => string.Empty;
|
|
}
|
|
}
|