mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
17 lines
319 B
C#
17 lines
319 B
C#
using Xamarin.Forms;
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
namespace SharedGui.View.Bike.RentalProcess
|
|
{
|
|
#if !NOXCT
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|
public partial class RentalProcessBookedOpenCloseLock : ContentView
|
|
{
|
|
|
|
public RentalProcessBookedOpenCloseLock()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
#endif
|
|
}
|