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