Initial version.

This commit is contained in:
Oliver Hauff 2021-05-13 20:03:07 +02:00
parent 193aaa1a56
commit b72c67a53e
228 changed files with 25924 additions and 0 deletions

View 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;
}
}