sharee.bike-App/SharedBusinessLogic/View/Themes/LastenradBayern.xaml.cs
2024-04-09 12:53:23 +02:00

19 lines
No EOL
402 B
C#

using ShareeBike.View.Themes;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace ShareeBike.Themes
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class LastenradBayern : ResourceDictionary, ITheme
{
public const string OPERATORINFO = "Lastenrad Bayern";
public LastenradBayern()
{
InitializeComponent();
}
public string OperatorInfo => OPERATORINFO;
}
}