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

19 lines
390 B
C#
Raw Normal View History

2021-11-07 19:42:59 +01:00
using TINK.View.Themes;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace TINK.Themes
{
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
}