sharee.bike-App/SharedBusinessLogic/ViewModel/Map/EmptyToggleViewModel.cs

32 lines
823 B
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00
using Xamarin.Forms;
2021-05-13 20:03:07 +02:00
2024-04-09 12:53:23 +02:00
namespace ShareeBike.ViewModel.Map
2021-05-13 20:03:07 +02:00
{
2022-09-06 16:08:19 +02:00
/// <summary> Holds an empty filter object.</summary>
/// <remarks>Old name: EmptyMapPageFilter</remarks>
2024-04-09 12:53:23 +02:00
public class EmptyToggleViewModel : ICargoCitybikeToggleViewModel
2022-09-06 16:08:19 +02:00
{
/// <summary> Holds the map page filter.</summary>
public IGroupFilterMapPage FilterDictionary => new GroupFilterMapPage();
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Active filter</summary>
public string CurrentFitler => string.Empty;
2021-05-13 20:03:07 +02:00
2024-04-09 12:53:23 +02:00
public bool IsCargoEnabled => false;
2021-05-13 20:03:07 +02:00
2024-04-09 12:53:23 +02:00
public Color CargoColor => Color.Default;
2021-05-13 20:03:07 +02:00
2024-04-09 12:53:23 +02:00
public Color NoCargoColor => Color.Default;
2022-08-30 15:42:25 +02:00
2024-04-09 12:53:23 +02:00
public bool IsCitybikeEnabled => false;
2021-05-13 20:03:07 +02:00
2024-04-09 12:53:23 +02:00
public Color CitybikeColor => Color.Default;
2021-05-13 20:03:07 +02:00
2024-04-09 12:53:23 +02:00
public Color NoCitybikeColor => Color.Default;
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
public bool IsToggleVisible => false;
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
public string CurrentFilter => string.Empty;
}
2021-05-13 20:03:07 +02:00
}