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

19 lines
387 B
C#
Raw Normal View History

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