mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-01-07 05:34:31 +01:00
18 lines
330 B
C#
18 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
|
||
|
}
|