2021-11-07 19:42:59 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
using Xamarin.Forms.Xaml;
|
|
|
|
|
|
2024-04-09 12:53:23 +02:00
|
|
|
|
namespace SharedGui.View.Bike.RentalProcess
|
2021-11-07 19:42:59 +01:00
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
2024-04-09 12:53:23 +02:00
|
|
|
|
public partial class RentalProcessBookedClosedOpenLock : ContentView
|
2022-09-06 16:08:19 +02:00
|
|
|
|
{
|
2024-04-09 12:53:23 +02:00
|
|
|
|
public RentalProcessBookedClosedOpenLock()
|
2022-09-06 16:08:19 +02:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-11-07 19:42:59 +01:00
|
|
|
|
}
|