mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-06 02:56:32 +01:00
22 lines
449 B
C#
22 lines
449 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
using Xamarin.Forms;
|
||
|
using Xamarin.Forms.Xaml;
|
||
|
#if !NOXCT
|
||
|
namespace ShareeSharedGuiLib.View.Bike.RentalProcess
|
||
|
{
|
||
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
||
|
public partial class RentalProcessBookedClosedEndRental : ContentView
|
||
|
{
|
||
|
public RentalProcessBookedClosedEndRental()
|
||
|
{
|
||
|
InitializeComponent ();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
# endif
|