mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
17 lines
333 B
C#
17 lines
333 B
C#
|
using TINK.View.Themes;
|
|||
|
using Xamarin.Forms;
|
|||
|
using Xamarin.Forms.Xaml;
|
|||
|
|
|||
|
namespace TINK.Themes
|
|||
|
{
|
|||
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|||
|
public partial class ShareeBike : ResourceDictionary, ITheme
|
|||
|
{
|
|||
|
public ShareeBike ()
|
|||
|
{
|
|||
|
InitializeComponent ();
|
|||
|
}
|
|||
|
|
|||
|
public string OperatorInfo => string.Empty;
|
|||
|
}
|
|||
|
}
|