mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
31 lines
805 B
C#
31 lines
805 B
C#
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 Color NoTinkColor => Color.Default;
|
|
|
|
public bool IsKonradEnabled => false;
|
|
|
|
public Color KonradColor => Color.Default;
|
|
|
|
public Color NoKonradColor => Color.Default;
|
|
|
|
public bool IsToggleVisible => false;
|
|
|
|
public string CurrentFilter => string.Empty;
|
|
}
|
|
}
|