using System.Collections.Generic;
using TINK.Model;
using Xamarin.Forms;
namespace TINK.ViewModel.Map
{
/// Holds an empty filter object.
/// Old name: EmptyMapPageFilter
public class EmptyToggleViewModel : ITinkKonradToggleViewModel
{
/// Holds the map page filter.
public IGroupFilterMapPage FilterDictionary => new GroupFilterMapPage();
/// Active filter
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;
}
}