mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-07-15 14:56:58 +02:00
Initial version.
This commit is contained in:
parent
193aaa1a56
commit
b72c67a53e
228 changed files with 25924 additions and 0 deletions
29
TINKLib/ViewModel/Map/EmptyToggleViewModel.cs
Normal file
29
TINKLib/ViewModel/Map/EmptyToggleViewModel.cs
Normal file
|
@ -0,0 +1,29 @@
|
|||
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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue