sharee.bike-App/SharedBusinessLogic/View/Themes/LastenradBayern.xaml.cs

19 lines
402 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
using ShareeBike.View.Themes;
2021-11-07 19:42:59 +01:00
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Themes
2021-11-07 19:42:59 +01:00
{
2022-09-06 16:08:19 +02:00
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class LastenradBayern : ResourceDictionary, ITheme
{
public const string OPERATORINFO = "Lastenrad Bayern";
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
public LastenradBayern()
{
InitializeComponent();
}
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
public string OperatorInfo => OPERATORINFO;
}
2021-11-07 19:42:59 +01:00
}