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,21 @@
using Xamarin.Forms;
namespace TINK.ViewModel.Map
{
public interface ITinkKonradToggleViewModel
{
IGroupFilterMapPage FilterDictionary { get; }
string CurrentFilter { get; }
bool IsTinkEnabled { get; }
Color TinkColor { get; }
bool IsKonradEnabled { get; }
Color KonradColor { get; }
bool IsToggleVisible { get; }
}
}